diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/bruno/configuration/health-check.bru | 19 | ||||
-rw-r--r-- | contrib/bruno/transaction-monitoring/folder.bru | 2 | ||||
-rw-r--r-- | contrib/docker-compose/compose-monitoring.yaml | 2 |
3 files changed, 21 insertions, 2 deletions
diff --git a/contrib/bruno/configuration/health-check.bru b/contrib/bruno/configuration/health-check.bru new file mode 100644 index 0000000..62f66a9 --- /dev/null +++ b/contrib/bruno/configuration/health-check.bru @@ -0,0 +1,19 @@ +meta { + name: health-check + type: http + seq: 4 +} + +get { + url: {{WARDEN_CFG_HOST}} + body: none + auth: inherit +} + +assert { + res.status: eq 200 +} + +settings { + encodeUrl: true +} diff --git a/contrib/bruno/transaction-monitoring/folder.bru b/contrib/bruno/transaction-monitoring/folder.bru index ca6f740..030714b 100644 --- a/contrib/bruno/transaction-monitoring/folder.bru +++ b/contrib/bruno/transaction-monitoring/folder.bru @@ -1,6 +1,6 @@ meta { name: transaction-monitoring - seq: 2 + seq: 3 } auth { diff --git a/contrib/docker-compose/compose-monitoring.yaml b/contrib/docker-compose/compose-monitoring.yaml index 89d8fe4..fb68164 100644 --- a/contrib/docker-compose/compose-monitoring.yaml +++ b/contrib/docker-compose/compose-monitoring.yaml @@ -59,7 +59,7 @@ services: # And put them in an OTEL collector pipeline... otel-collector: - image: otel/opentelemetry-collector:0.131.1 + image: otel/opentelemetry-collector:0.132.2 command: [ "--config=/etc/otel-collector.yaml" ] volumes: - ./config/otel-collector.yaml:/etc/otel-collector.yaml |