This file contains hidden or 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
[defaults] | |
inventory = ./inventory | |
host_key_checking = False | |
vault_password_file = vault.key | |
callback_whitelist = profile_tasks | |
retry_files_enabled = False | |
[ssh_connection] | |
ssh_args = -F ./ssh.cfg -o ControlMaster=auto -o ControlPersist=30m | |
control_path = ~/.ssh/ansible-%%r@%%h:%%p |
This file contains hidden or 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
{{ $headers := findRE "<h[2-4].*?>(.|\n])+?</h[2-4]>" .Content }} | |
{{ $numHeaders := len $headers }} | |
{{ $hasHeaders := ge $numHeaders 1 }} | |
{{ if $hasHeaders }} | |
<nav id="toc" data-toggle="toc"> | |
<!-- TOC header --> | |
<h4 class="text-muted toc-heading">Table of Contents</h4> | |
<ol class="toc"> | |
{{ range $i, $header := $headers }} |
This file contains hidden or 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
{"lastUpload":"2021-09-07T01:26:03.389Z","extensionVersion":"v3.4.3"} |
This file contains hidden or 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
defmodule ScoutApm.Absinthe.Plug do | |
alias ScoutApm.Internal.Layer | |
require Logger | |
@error_prefix "GraphQL query document could not be parsed" | |
@endpoint_prefix "GraphQL" | |
@default_action_name "unknown" | |
def init(default), do: default |