22{{ $productPathData := split .RelPermalink "/" }}
33{{ $product := index $productPathData 1 }}
44{{ $version := index $productPathData 2 }}
5- {{ $productKey := cond (eq $product "influxdb3") (print "influxdb3_" (replaceRE "-" "_" $version)) $product }}
5+ {{ $isInfluxDB3 := eq $product "influxdb3" }}
6+ {{ $isTelegrafController := and (eq $product "telegraf") (eq $version "controller") }}
7+ {{ .Store.Set "productKey" $product }}
8+ {{ if $isInfluxDB3 }}
9+ {{ .Store.Set "productKey" (print "influxdb3_" (replaceRE "-" "_" $version)) }}
10+ {{ else if $isTelegrafController }}
11+ {{ .Store.Set "productKey" "telegraf_controller" }}
12+ {{ end }}
13+ {{ $productKey := .Store.Get "productKey" }}
614{{ $productData := index $.Site.Data.products $productKey }}
715{{ $displayName := $productData.name }}
8- {{ $earlyAccessList := slice "" }}
16+ {{ $productPathWhitelist := slice "telegraf/controller " }}
917
10- {{ if in $earlyAccessList (print $product "/" $version )}}
18+ {{ if in $productPathWhitelist (print $product "/" $version )}}
1119< div class ="block special-state ">
1220 < div class ="state-content ">
13- < h4 id ="influxdb3-explorer-ga "> {{ $displayName }} is Generally Available </ h4 >
21+ < h4 id ="telegraf-controller-private-alpha "> {{ $displayName }} is in Private Alpha </ h4 >
1422 < p >
15- {{ $displayName }} is generally available and is ready for production use.
16- We welcome and encourage your input about your experience with Explorer and
17- invite you to < strong > join our public channels</ strong > for updates and to
18- share feedback.
23+ {{ $displayName }} is in private alpha. If you are interested in being a
24+ part of the private alpha program, please sign up:
1925 </ p >
26+ < p > < a href ="https://www.influxdata.com/products/telegraf-enterprise " class ="btn "> Sign Up for the Alpha</ a > </ p >
2027 < p >
21- < em > The {{ $displayName}} documentation is a work in progress, and we are actively
28+ While in alpha, {{ $displayName }} is < strong > not meant for production use</ strong > .
29+ The {{ $displayName}} documentation is a work in progress, and we are actively
2230 working to improve it. If you have any questions or suggestions, please
23- < a href ="https://github.com/influxdata/docs-v2/issues/new?labels=InfluxDB%203%20Explorer "> submit an issue</ a > .
24- We welcome any and all contributions.</ em >
31+ < a href ="https://github.com/influxdata/docs-v2/issues/new?labels=Telegraf%20Controller "> submit an issue</ a > .
32+ We welcome any and all contributions.
2533 </ p >
2634 < div class ="expand-wrapper ">
2735 < div class ="expand " id ="feedback-channels ">
@@ -30,9 +38,9 @@ <h4 id="influxdb3-explorer-ga">{{ $displayName }} is Generally Available</h4>
3038 </ p >
3139 < div class ="expand-content " style ="display: none; " >
3240 < ul class ="feedback-channels ">
33- < li > < a href ="https://discord.gg/9zaNCW2PRT " target ="_blank " class ="discord "> InfluxDB Discord Server < em style ="opacity:.5 "> (Preferred)</ em > </ a > </ li >
41+ <!-- <li><a href="https://discord.gg/9zaNCW2PRT" target="_blank" class="discord">InfluxDB Discord Server <em style="opacity:.5">(Preferred)</em></a></li> -->
42+ < li > < a href ="https://influxdata.com/slack " target ="_blank " class ="slack "> InfluxDB Community Slack < em style ="opacity:.5 "> (Preferred)</ em > </ a > </ li >
3443 < li > < a href ="https://community.influxdata.com " target ="_blank " class ="community "> InfluxData Community</ a > </ li >
35- < li > < a href ="https://influxdata.com/slack " target ="_blank " class ="slack "> InfluxDB Community Slack</ a > </ li >
3644 < li > < a href ="https://reddit.com/r/influxdb " target ="_blank " class ="reddit "> InfluxDB Subreddit</ a > </ li >
3745 </ ul >
3846 </ div >
0 commit comments