forked from open-telemetry/opentelemetry.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/issue-5826-create-observability-prim…
…er.md
- Loading branch information
Showing
10 changed files
with
411 additions
and
567 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
Submodule opentelemetry-java-examples
updated
22 files
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,35 @@ | ||
{{/* Docsy override (temporary) */ -}} | ||
|
||
<div class="td-content"> | ||
<h1>{{ .Title }}</h1> | ||
{{ with .Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }} | ||
<div class="td-byline mb-4"> | ||
{{ with .Params.author }}{{ T "post_byline_by" }} <b>{{ . | markdownify }}</b> |{{ end}} | ||
<time datetime="{{ $.Date.Format "2006-01-02" }}" class="text-body-secondary">{{ $.Date.Format $.Site.Params.time_format_blog }}</time> | ||
</div> | ||
<header class="article-meta"> | ||
{{ partial "taxonomy_terms_article_wrapper.html" . -}} | ||
{{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) -}} | ||
{{ partial "reading-time.html" . -}} | ||
{{ end -}} | ||
</header> | ||
{{ if .Date.Before (now.AddDate -1 0 0) -}} | ||
<div class="pageinfo pageinfo-warning"> | ||
<p> | ||
<i class="fa-solid fa-triangle-exclamation"></i> | ||
Blog posts are not updated after publication. This post is more | ||
than a year old, so its content may be outdated, and some links may be | ||
invalid. Cross-verify any information before relying on it. | ||
</p> | ||
</div> | ||
{{ end -}} | ||
{{ .Content }} | ||
{{ if (.Site.Config.Services.Disqus.Shortname) -}} | ||
<br /> | ||
{{- partial "disqus-comment.html" . -}} | ||
<br /> | ||
{{ end -}} | ||
|
||
{{ partial "pager.html" . }} | ||
{{ partial "page-meta-lastmod.html" . -}} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{{ define "main" }} | ||
{{ if (and .Parent .Parent.IsHome) -}} | ||
{{ $.Scratch.Set "blog-pages" (where .Site.RegularPages "Section" .Section) -}} | ||
{{ else -}} | ||
{{$.Scratch.Set "blog-pages" .Pages -}} | ||
{{ end -}} | ||
|
||
{{/* Docsy override - temporary */ -}} | ||
{{ .Content -}} | ||
|
||
<div class="td-blog-posts"> | ||
{{ if .Pages -}} | ||
{{ $pag := .Paginate (( $.Scratch.Get "blog-pages").GroupByDate "2006" ) -}} | ||
{{ range $pag.PageGroups -}} | ||
<div class="h2">{{ T "post_posts_in" }} {{ .Key }}</div> | ||
<ul class="td-blog-posts-list"> | ||
{{ range .Pages -}} | ||
<li class="td-blog-posts-list__item"> | ||
<div class="td-blog-posts-list__body"> | ||
<h5 class="mt-0 mb-1"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h5> | ||
<p class="mb-2 mb-md-3"><small class="text-body-secondary">{{ .Date.Format ($.Param "time_format_blog") }} {{ T "ui_in"}} {{ .CurrentSection.LinkTitle }}</small></p> | ||
<header class="article-meta"> | ||
{{ partial "taxonomy_terms_article_wrapper.html" . -}} | ||
{{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) -}} | ||
{{ partial "reading-time.html" . -}} | ||
{{ end -}} | ||
</header> | ||
{{ partial "featured-image.html" (dict "p" . "w" 250 "h" 125 "class" "float-start me-3 pt-1 d-none d-md-block") -}} | ||
<p class="pt-0 mt-0">{{ .Plain | safeHTML | truncate 250 }}</p> | ||
<p class="pt-0"><a href="{{ .RelPermalink }}" aria-label="{{ T "ui_read_more"}} - {{ .LinkTitle }}">{{ T "ui_read_more"}}</a></p> | ||
</div> | ||
</li> | ||
{{ end -}} | ||
</ul> | ||
{{ end -}} | ||
{{ end }} | ||
</div> | ||
<div class="td-blog-posts__pagination"> | ||
{{ if .Pages -}} | ||
{{ template "_internal/pagination.html" . -}} | ||
{{ end -}} | ||
</div> | ||
{{ end -}} |
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
Oops, something went wrong.