Skip to content

Instantly share code, notes, and snippets.

View danielkhan's full-sized avatar

Daniel Khan danielkhan

  • Sentry
  • Linz / Austria
  • X @dkhan
View GitHub Profile
const fs = require("fs");
setImmediate(() => {
process.stdout.write(`setImmediate (after poll phase)\n`);
process.nextTick(() => {
process.stdout.write(`nextTick (nested registered in setImmediate())\n`);
});
});
setTimeout(() => {
process.stdout.write(`setTimeout (timers phase)\n`);
extends ../layout/index
block content
#speakerDetail.container
.row
.col-sm-8
article.speakerslist
.container
.row
.col-sm-8
extends ../layout/index
block content
#speakerList.container
.row
.col-sm-8
article.speakerslist
.container
.row
.col-sm-8
h3.speakerslist-title Art in Full Bloom
header
.jumbotron.hidden-xs
// jumbotron
nav.navbar.navbar-inverse
.container
.navbar-header
button.navbar-toggle.collapsed(type='button', data-toggle='collapse', data-target='#navbar-collapse', aria-expanded='false')
span.sr-only Toggle navigation
span.icon-bar
span.icon-bar
const {
Tracer,
BatchRecorder,
ExplicitContext,
jsonEncoder: { JSON_V2 }
} = require('zipkin');
const zipkinMiddleware = require('zipkin-instrumentation-express').expressMiddleware;
const wrapRequest = require('zipkin-instrumentation-request');
const request = require('request');
module.exports.postProblemDetail = async (body, callback) => {
console.log(body);
if (body.type === "validate") {
return callback(null, success(say("Would you like to notify the person on call?", 'Notify Daniel')));
}
if (body.type === "custom") {
return callback(null, success(say(`Notified Daniel`)));
}
# The name of the service
service: dynatrace-lambda-sample
provider:
name: aws
# The node version to use
runtime: nodejs8.10
functions:
hello:
const axios = require('axios');
module.exports.handler = async (event, context, callback) => {
// Asynchronous HTTP GET
// In real projects, you want to add some error handling here.
const res = axios.get('https://api.weather.gov/points/39.7456,-97.0892');
const response = {
statusCode: 200,
# The name of the service
service: dynatrace-lambda-sample
provider:
name: aws
# The node version to use
runtime: nodejs8.10
functions:
hello:
const axios = require('axios');
module.exports.handler = async (event, context, callback) => {
// Asynchronous HTTP GET
// In real projects, you want to add some error handling here.
const res = await axios.get('https://api.weather.gov/points/39.7456,-97.0892');
const response = {
statusCode: 200,