adcea9b605
* Make datacenter queries use query vs findAll like the rest of the app * Make sure we have an element to pass to isInViewport * Make sure href-mut doesn't error even if the currentRoute === null * More post test cleanup and Safari fix (safari requires http:// URLs) * Reverse order of datasource nspace/dc's and add a namespace source * Rearrange routes/templates/controllers to only use HashicorpConsul once * Add datasources and correct token namespace detection/redirection * Remove old dc findAll adapter method * Add more comments around the 'child route/parent controller' vars
42 lines
1.9 KiB
Handlebars
42 lines
1.9 KiB
Handlebars
{{title "Settings"}}
|
|
<AppView @class="settings show">
|
|
<BlockSlot @name="header">
|
|
<h1>
|
|
Settings
|
|
</h1>
|
|
</BlockSlot>
|
|
<BlockSlot @name="content">
|
|
<div class="notice info">
|
|
<h3>Local Storage</h3>
|
|
<p>
|
|
These settings are immediately saved to local storage and persisted through browser usage.
|
|
</p>
|
|
</div>
|
|
<form>
|
|
<fieldset>
|
|
<h2>Dashboard Links</h2>
|
|
<p>
|
|
Add a link to the service detail page in the UI to get quick access to a service-wide metrics dashboard. Enter the dashboard URL into the field below. You can use the placeholders <code>{{'{{Datacenter}}'}}</code> and <code>{{'{{Service.Name}}'}}</code> which will be replaced with the name of the datacenter/service currently being viewed.
|
|
</p>
|
|
<label class={{concat (if confirming 'confirming') ' type-text'}} id="urls_service">
|
|
<span>Link template for services</span>
|
|
<input type="text" name="urls[service]" value={{item.urls.service}} onchange={{action 'change'}} onkeypress={{action 'key'}} onkeydown={{action 'key'}} />
|
|
<em>e.g. https://grafana.example.com/d/1/consul-service-mesh&orgid=1&datacenter={{'{{Datacenter}}'}}&service-name={{'{{Service.Name}}'}}</em>
|
|
</label>
|
|
</fieldset>
|
|
{{#if (not (env 'CONSUL_UI_DISABLE_REALTIME'))}}
|
|
<fieldset data-test-blocking-queries>
|
|
<h2>Blocking Queries</h2>
|
|
<p>Keep catalog info up-to-date without refreshing the page. Any changes made to services, nodes and intentions would be reflected in real time.</p>
|
|
<div class="type-toggle">
|
|
<label>
|
|
<input type="checkbox" name="client[blocking]" checked={{if item.client.blocking 'checked'}} onchange={{action 'change'}} />
|
|
<span>{{if item.client.blocking 'On' 'Off'}}</span>
|
|
</label>
|
|
</div>
|
|
</fieldset>
|
|
{{/if}}
|
|
</form>
|
|
</BlockSlot>
|
|
</AppView>
|