From a4033acb3dc0308990a5d4b554f91b7882abafa5 Mon Sep 17 00:00:00 2001 From: Albert Lombarte Date: Tue, 8 Jun 2021 19:04:45 +0200 Subject: [PATCH] Instana integration --- src/app/forms/logging.html | 1 + src/app/forms/sidebar.html | 2 +- src/app/layout.html | 24 ++++++------- src/app/middlewares/instana.html | 40 ++++++++++++++++++++++ src/app/services/default_config.service.js | 5 +++ 5 files changed, 59 insertions(+), 13 deletions(-) create mode 100644 src/app/middlewares/instana.html diff --git a/src/app/forms/logging.html b/src/app/forms/logging.html index 0c0cc7c..570e66f 100644 --- a/src/app/forms/logging.html +++ b/src/app/forms/logging.html @@ -5,4 +5,5 @@
+
\ No newline at end of file diff --git a/src/app/forms/sidebar.html b/src/app/forms/sidebar.html index 65bba89..18f46ab 100644 --- a/src/app/forms/sidebar.html +++ b/src/app/forms/sidebar.html @@ -47,7 +47,7 @@
  • - Logging and metrics + Observability
  • Documentation
  • diff --git a/src/app/layout.html b/src/app/layout.html index 0fd5aaf..c565426 100644 --- a/src/app/layout.html +++ b/src/app/layout.html @@ -151,7 +151,7 @@

    KrakenDesigner

    >Facebook KrakenDesigner @@ -232,18 +232,18 @@
    Support
    diff --git a/src/app/middlewares/instana.html b/src/app/middlewares/instana.html new file mode 100644 index 0000000..aec6ec3 --- /dev/null +++ b/src/app/middlewares/instana.html @@ -0,0 +1,40 @@ +
    +
    +

    + Instana (Integration with Instana APM)

    +
    + Enterprise +
    +
    +
    +

    The Instana integration middleware allows you to export tracing and metrics to your Instana account:

    +
    +
    +
    + + + + The host where your agent is installed, usually localhost + +
    +
    + + + + The port where your agent is listening, usually 46999 + +
    +
    + + + + The global service name that will be used to identify the program in the Instana backend + +
    +
    +
    +
    +
    \ No newline at end of file diff --git a/src/app/services/default_config.service.js b/src/app/services/default_config.service.js index 57a8415..c5c4157 100644 --- a/src/app/services/default_config.service.js +++ b/src/app/services/default_config.service.js @@ -51,6 +51,11 @@ angular "POST" ] }, + 'github_com/devopsfaith/krakend-instana': { + "AgentHost": "localhost", + "AgentPort": 46999, + "Service": "krakend" + }, "github.com/devopsfaith/krakend-amqp/produce": { "exchange": "some-exchange", "durable": true,