Skip to content

Commit c941d28

Browse files
committed
Website Hosting for CDK Observability Accelerator
1 parent be23d12 commit c941d28

File tree

6 files changed

+102
-0
lines changed

6 files changed

+102
-0
lines changed

docs/contributors.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Contributors
2+
3+
The content on this site is maintained by the Solutions Architects from the
4+
AWS observability team with support from the AWS service teams and other
5+
volunteers from across the organization.
6+
7+
Our goal is to make it easier to use AWS Native and Open Source Observability Services.
8+
9+
The core team include the following people:
10+
11+
* Elamaran Shanmugam
12+
* Imaya Kumar Jagannathan
13+
* Kevin Lewin
14+
* Michael Hausenblas
15+
* Mikhail Shapirov
16+
* Rodrigue Koffi
17+
18+
We welcome the wider open source community and thank [those who contribute](https://github.com/aws-observability/cdk-aws-observability-accelerator/graphs/contributors)
19+
to this project.
20+
21+
Note that all information published on this site is available via the
22+
Apache 2.0 license.

docs/images/aws-favicon.png

392 Bytes
Loading

docs/images/aws-logo.png

3.58 KB
Loading

docs/overrides/main.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{% extends "base.html" %}
2+
3+
{% block extrahead %}
4+
5+
<script>
6+
(function(n,i,v,r,s,c,x,z){x=window.AwsRumClient={q:[],n:n,i:i,v:v,r:r,c:c};window[n]=function(c,p){x.q.push({c:c,p:p});};z=document.createElement('script');z.async=true;z.src=s;document.head.insertBefore(z,document.head.getElementsByTagName('script')[0]);})(
7+
'cwr',
8+
'1244d427-de32-4423-b7fe-3d6903e95178',
9+
'1.0.0',
10+
'us-east-2',
11+
'https://client.rum.us-east-1.amazonaws.com/1.12.0/cwr.js',
12+
{
13+
sessionSampleRate: 1,
14+
guestRoleArn: "arn:aws:iam::147084596884:role/RUM-Monitor-us-east-2-147084596884-2189797490761-Unauth",
15+
identityPoolId: "us-east-2:4aa2665a-6b7f-4202-856c-333e1f4bdec6",
16+
endpoint: "https://dataplane.rum.us-east-2.amazonaws.com",
17+
telemetries: ["performance","errors","http"],
18+
allowCookies: true,
19+
enableXRay: false
20+
}
21+
);
22+
</script>
23+
24+
{% endblock %}

docs/support.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Support & Feedback
2+
3+
AWS Observability Accelerator for CDK is maintained by AWS Solution Architects.
4+
It is not part of an AWS service and support is provided best-effort by the
5+
AWS Observability Accelerator community.
6+
7+
To post feedback, submit feature ideas, or report bugs, please use the [issues](https://github.com/aws-observability/cdk-aws-observability-accelerator/issues) section of this GitHub repo.
8+
9+
If you are interested in contributing, see the [contribution guide](https://github.com/aws-observability/cdk-aws-observability-accelerator/blob/main/CONTRIBUTING.md).

mkdocs.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
site_name: AWS Observability Accelerator for CDK
2+
docs_dir: "docs"
3+
copyright: "Copyright &copy; Amazon 2022"
4+
site_author: "AWS"
5+
site_url: "https://aws-observability.github.io/cdk-aws-observability-accelerator/"
6+
repo_name: "aws-observability/cdk-aws-observability-accelerator"
7+
repo_url: "https://github.com/aws-observability/cdk-aws-observability-accelerator"
8+
9+
theme:
10+
logo: ../images/aws-logo.png
11+
favicon: ../images/aws-favicon.png
12+
name: material
13+
font:
14+
text: ember
15+
custom_dir: docs/overrides
16+
icon:
17+
repo: fontawesome/brands/github
18+
features:
19+
- navigation.tabs.sticky
20+
21+
palette:
22+
primary: indigo
23+
accent: grey
24+
25+
nav:
26+
- Home: index.md
27+
- Amazon EKS:
28+
- Single Cluster AWS Native Observability: patterns/single-new-eks-observability-accelerators/single-new-eks-native-observability.md
29+
- Single Cluster Open Source Observability: patterns/single-new-eks-observability-accelerators/single-new-eks-opensource-observability.md
30+
- Support & Feedback: support.md
31+
- Contributors: contributors.md
32+
33+
markdown_extensions:
34+
- toc:
35+
permalink: true
36+
- admonition
37+
- codehilite
38+
- footnotes
39+
- pymdownx.critic
40+
- pymdownx.superfences:
41+
custom_fences:
42+
- name: mermaid
43+
class: mermaid
44+
format: !!python/name:pymdownx.superfences.fence_code_format
45+
46+
plugins:
47+
- search

0 commit comments

Comments
 (0)