Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ release: "0.11.0"
hide_on_release_notes: false
badges:
type: "new feature"
domains: ["networking"]
domains: ["performance", "reliability"]
domains: ["networking", "performance", "reliability"]
---

Vector 0.11 includes a new Adaptive Request Concurrency (ARC) feature that
Expand Down
3 changes: 1 addition & 2 deletions website/content/en/highlights/2020-12-23-vector-top.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ release: "0.12.0"
hide_on_release_notes: false
badges:
type: "new feature"
domains: ["cli"]
domains: ["observability"]
domains: ["cli", "observability"]
---

[`vector top`][top] is a command for the Vector [CLI] that displays both metrics emitted by your Vector instance as well
Expand Down
6 changes: 3 additions & 3 deletions website/layouts/partials/author-with-avatar.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
{{ $apiUrl := printf "https://api.github.com/users/%s" $handle }}
{{ $name := $handle }}
{{ $displayName := $handle }}
{{ with resources.GetRemote $apiUrl }}
{{ with try (resources.GetRemote $apiUrl) }}
{{ with .Err }}
{{/* Silently fall back to GitHub handle on error */}}
{{ else }}
{{ $data := . | transform.Unmarshal }}
{{ $data := .Value | transform.Unmarshal }}
{{ if $data.name }}
{{ $name = $data.name }}
{{ $displayName = printf "%s (%s)" $data.name $handle }}
Expand All @@ -28,4 +28,4 @@
</span>
</a>
{{ end }}
</div>
</div>
6 changes: 3 additions & 3 deletions website/layouts/partials/content.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ <h1 class="dark:text-gray-50 font-secondary font-extrabold text-4xl lg:text-5xl
{{ $apiUrl := printf "https://api.github.com/users/%s" $handle }}
{{ $name := $handle }}
{{ $displayName := $handle }}
{{ with resources.GetRemote $apiUrl }}
{{ with try (resources.GetRemote $apiUrl) }}
{{ with .Err }}
{{/* Silently fall back to GitHub handle on error */}}
{{ else }}
{{ $data := . | transform.Unmarshal }}
{{ $data := .Value | transform.Unmarshal }}
{{ if $data.name }}
{{ $name = $data.name }}
{{ $displayName = $data.name }}
Expand Down Expand Up @@ -71,4 +71,4 @@ <h1 class="dark:text-gray-50 font-secondary font-extrabold text-4xl lg:text-5xl
<div class="mt-12">
{{ partial "inner-content.html" . }}
</div>
</div>
</div>
Loading