Datadog middleware for Connect JS / Express with support for GraphQL operations.
Add middleware immediately before your router.
app.use(require("connect-datadog-graphql")({}));
app.use(app.router);
All options are optional.
dogstatsd
hot-shots client.default = new require("hot-shots").StatsD()
stat
string name for the stat.default = "node.express.router"
tags
array of tags to be added to the histogram.default = []
path
boolean include path tag.default = false
base_url
boolean include baseUrl.default = false
method
boolean include http method tag.default = false
protocol
boolean include protocol tag.default = false
response_code
boolean include http response codes.default = false
delim
string char to replace pipe char with in the routedefault = '-'
graphql_paths
array of path strings where we should check for graphql requestsextra_attributes
array arbitrary extra tags to include
View the LICENSE file.