Skip to content

Commit 3de5d6b

Browse files
authored
chore: update docs to reflect UI changes (DataDog#22)
1 parent 0ed3a0d commit 3de5d6b

File tree

6 files changed

+22
-10
lines changed

6 files changed

+22
-10
lines changed

docs/setup-dev-lifecycle-visibility.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ Clicking on **Main Autorelease**, we can quickly analyze the time spent building
3838

3939
Why could this be? A hint can be found in the main-autorelease.yaml build file, and the platforms targeted for the Go build 🙂
4040

41-
### Code Analysis
41+
### Code Security & Analysis
4242

4343
> [!TIP]
4444
> Datadog Code Analysis evaluates your code for security, performance, best practices, and more without needing to executing the code.
4545
> TODO - link here to more info about static analysis and SCA
4646
4747

48-
Using the **Go To** dialog, jump to **Code Analysis**. Code Analysis can be setup using a runner within your code pipelines, or on the Datadog side, with Datadog itself cloning and analyzing your repository.
48+
Using the **Go To** dialog, jump to **Code Security**. Code Security can be setup using a runner within your code pipelines, or on the Datadog side, with Datadog itself cloning and analyzing your repository.
4949

50-
The simplest option is to enable the analysis on the Datadog side. Select **Setup Code Analysis**, and then next to your GitHub repository, select **Edit**. Toggle on **Static Analysis** and **SCA** for your repository.
50+
The simplest option is to enable the analysis on the Datadog side. Select **Settings** and then **Manage Repositories**, and then next to your GitHub repository, select **Edit**. Toggle on **Static Analysis** and **SCA** for your repository.
5151

5252
<p align='center'>
5353
<img alt="Enable Static Analysis and SCA" src="assets/setup-dev-lifecycle-visibility-code-analysis.jpeg" width="600px" />
@@ -61,15 +61,15 @@ Once our repository is connected and a scan has been completed, we will see both
6161
<img alt="Static analysis dashboard" src="assets/setup-dev-lifecycle-visibility-code-analysis-results.jpeg" width="600px" />
6262
</p>
6363

64-
### Test Visibility
64+
### Test Runs
6565

6666
> [!TIP]
67-
> Datadog Test Visibility provides a test-first view into your CI health by displaying important metrics and results from your tests. It can help you investigate performance problems and test failures that are most relevant to your work, focusing on the code you are responsible for, rather than the pipelines which run your tests.
67+
> Datadog Test Runs provides a test-first view into your CI health by displaying important metrics and results from your tests. It can help you investigate performance problems and test failures that are most relevant to your work, focusing on the code you are responsible for, rather than the pipelines which run your tests.
6868
> TODO - link here to more info about test analysis
6969
70-
If you want to use test visibility, you need to setup the Github actions secrets as described above in the **Code Analysis** section. If this is turned off the unit tests will run regardless, but will not post their results to Datadog.
70+
If you want to use Test Runs, you need to setup the Github actions secrets as described above in the **Code Analysis** section. If this is turned off the unit tests will run regardless, but will not post their results to Datadog.
7171

72-
Using **Go To**, jump over to **Test Visibility** to see the state of tests in the Datadog console grouped up by branch:
72+
Using **Go To**, jump over to **Test Runs** to see the state of tests in the Datadog console grouped up by branch:
7373

7474
<p align='center'>
7575
<img alt="Test analysis branch view" src="assets/setup-dev-lifecycle-test-branch-view.jpeg" width="600px" />
@@ -83,6 +83,6 @@ Clicking through to Test Executions allows you to see detailed information for e
8383
</p>
8484

8585

86-
If you like, you can additionally enable **Github Comments** and **Auto Test Retries** from the **Test Visibility Sections** pane in the Datadog console.
86+
If you like, you can additionally enable **Github Comments** and **Auto Test Retries** from the **Test Runs Sections** pane in the Datadog console.
8787

8888
Next up, you can [deploy the mountain passes stack](setup-runtime.md) with ArgoCD.

docs/setup-runtime-deploy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Wait for the stack to come up, and then forward a port to **pass-summary-api**:
3030

3131
Then, in another shell:
3232
```bash
33-
curl http://localhost:8080/downstream
33+
curl http://localhost:8080/pass-summary
3434
```
3535
Which should return something like `{"total_ascent":6518,"pass_count":3}`
3636

docs/setup-runtime.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636
protocols:
3737
grpc:
3838
enabled: true
39-
hostPort:
39+
hostPortConfig:
4040
enabled: true
4141

4242
# Ensure APM is enabled, so that we can collect traces
@@ -53,6 +53,12 @@ spec:
5353
enabled: true
5454
processDiscovery:
5555
enabled: true
56+
kubeStateMetricsCore:
57+
enabled: true
58+
clusterChecks:
59+
enabled: true
60+
eventCollection:
61+
collectKubernetesEvents: true
5662
```
5763
5864
> [!TIP]

manifests/base/pass-api/deployment.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ spec:
2525
path: /ping
2626
port: 8080
2727
env:
28+
- name: DD_HOST
29+
value: datadog-agent
2830
- name: POSTGRES_HOST
2931
value: "pass-db"
3032
- name: POSTGRES_USER

manifests/base/pass-image-api/deployment.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ spec:
2323
path: /ping
2424
port: 8080
2525
env:
26+
- name: DD_HOST
27+
value: datadog-agent
2628
- name: DD_ENV
2729
valueFrom:
2830
configMapKeyRef:

manifests/base/pass-summary-api/deployment.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ spec:
2525
path: /ping
2626
port: 8080
2727
env:
28+
- name: DD_HOST
29+
value: datadog-agent
2830
- name: DD_ENV
2931
valueFrom:
3032
configMapKeyRef:

0 commit comments

Comments
 (0)