-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
2 changed files
with
31 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,28 @@ | ||
{{/* cSpell:ignore distri bution cond */}} | ||
{{ $data := sort (sort (sort $.Site.Data.ecosystem.vendors "name") "oss" "desc") "commercial" }} | ||
| Organization[^1] | Open Source | Commercial | Distri­bution | Native OTLP | Learn more | | ||
{{/* cSpell:ignore distri bution cond */ -}} | ||
{{ $data := sort (sort (sort $.Site.Data.ecosystem.vendors "name") "oss" "desc") "commercial" -}} | ||
|
||
| Organization[^org] | OSS | Com­mer­cial | Distri­bution | Native OTLP | Learn more | | ||
| ----------- | ----------- | ---------- | ----------------- | ----------- | ----------- | | ||
{{- range $data }} | ||
{{- $shortUrl := .shortUrl -}} | ||
{{- if not $shortUrl }} | ||
{{- $tmp := split (replace .url "https://" "") "/" }} | ||
{{- $shortUrl = (index $tmp 0) }} | ||
{{- if gt (len $tmp) 1 }} | ||
{{- $shortUrl = printf "%s/…" $shortUrl }} | ||
{{- end }} | ||
{{- end }} | ||
{{ .name }} | {{ cond (.oss) "Yes" "No" }} | {{ cond (.commercial) "Yes" "No" }} | {{ cond (.distribution) "Yes" "No" }} | {{ cond (.nativeOTLP) "Yes" "No" }} | [{{ $shortUrl }}]({{ .url }}) | | ||
{{- $shortUrl := .shortUrl -}} | ||
{{- if not $shortUrl }} | ||
{{- $tmp := split (replace .url "https://" "") "/" }} | ||
{{- $shortUrl = (index $tmp 0) }} | ||
{{- if gt (len $tmp) 1 }} | ||
{{- $shortUrl = printf "%s/…" $shortUrl }} | ||
{{- end }} | ||
{{- end }} | ||
{{/* Each line below is a column: */ -}} | ||
{{ .name }} | | ||
{{- cond .oss "Yes" "No" }} | | ||
{{- cond .commercial "Yes" "No" }} | | ||
{{- cond .distribution "Yes" "No" }} | | ||
{{- cond .nativeOTLP "Yes" "No" }} | | ||
{{- /* */}} [{{ $shortUrl }}]({{ .url }}) | | ||
{{- end }} | ||
|
||
[^1]: Organizations are listed as follows: | ||
- pure OSS offerings | ||
- mixed offerings | ||
- commercial offerings | ||
- alphabetical within those groups | ||
[^org]: Organizations are grouped as follows based on their OTel support: | ||
- Pure OSS | ||
- Mixed OSS/commercial | ||
- Commercial | ||
- Alphabetical within each group |