-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
59 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<div class="box box-primary"> | ||
<div class="box-header with-border"> | ||
<h3 class="box-title"><input type="checkbox" ng-checked="isMiddlewareEnabled()" ng-click="toggleMiddleware()"> | ||
Instana <small>(Integration with Instana APM)</small></h3> | ||
<div class="pull-right"> | ||
<span class="pull-right-container badge">Enterprise</span> | ||
</div> | ||
</div> | ||
<div class="box-body" ng-if="isMiddlewareEnabled()"> | ||
<p>The Instana integration <em>middleware</em> allows you to export tracing and metrics to your Instana account:</p> | ||
<div class="form-group"> | ||
<div class="row"> | ||
<div class="col-md-4"> | ||
<label class="control-label">Agent Host</label> | ||
<input type="text" class="form-control" | ||
ng-model="data.extra_config[config_namespace].AgentHost" placeholder="localhost"> | ||
<span class="help-block"> | ||
The host where your agent is installed, usually <code>localhost</code> | ||
</span> | ||
</div> | ||
<div class="col-md-4"> | ||
<label class="control-label">Agent Port</label> | ||
<input type="number" class="form-control" | ||
ng-model="data.extra_config[config_namespace].AgentPort" placeholder="46999"> | ||
<span class="help-block"> | ||
The port where your agent is listening, usually <code>46999</code> | ||
</span> | ||
</div> | ||
<div class="col-md-4"> | ||
<label class="control-label">Service</label> | ||
<input type="text" class="form-control" | ||
ng-model="data.extra_config[config_namespace].Service" placeholder="krakend"> | ||
<span class="help-block"> | ||
The global service name that will be used to identify the program in the Instana backend | ||
</span> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters