aboutsummaryrefslogtreecommitdiffhomepage
path: root/dhall/server/service/plugin/CorrelationId.dhall
blob: 655cd8d792a7b7db28bad5e91be900ce822f6b8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
let Plugin = ./Plugin.dhall

let config = ./Config.dhall

in    { name =
		  "correlation-id"
	  , config =
		  config.CorrelationId
		  { header_name = "X-correl", echo_downstream = True }
	  }
	: Plugin