Skip to content

Commit

Permalink
updated for v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vijayaggarwal committed Dec 21, 2023
1 parent 0be455b commit 96004e9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/Installation/01_install/3_docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ docker run -d --name cubeapm \
-p 3125:3125 -p 4317:4317 -p 4318:4318 \
-v cube_data:/root/data \
-v ./config.properties:/etc/cubeapm/config.properties \
cubeapm/cubeapm:v1.7.0 \
cubeapm/cubeapm:v1.8.0 \
--config-file /etc/cubeapm/config.properties
```

Expand Down
6 changes: 6 additions & 0 deletions docs/Installation/02_configure/02_configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ In addition, the following configuration parameters have some default value, but
4. `smtp.from`
5. `time-zone`

:::info
For security reasons, CubeAPM requires HTTPS. Hence, it needs to be deployed behind a load balancer or reverse proxy with SSL termination capability.

However, for ease of initial exploration, HTTP can be used with `localhost`/`127.0.0.1` only.
:::

## Configuration Reference

Below is the list of all configuration parameters supported by CubeAPM, along with documentation and default values.
Expand Down
2 changes: 1 addition & 1 deletion docs/instrumentation/nodeJS.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ CubeAPM shows stacktraces for any exceptions that occur in your application. How
```typescript
import express, { Express, ErrorRequestHandler } from "express";
// highlight-next-line
import { trace, SpanStatusCode } from "@opentelemetry/api";
import { trace } from "@opentelemetry/api";

const app: Express = express();

Expand Down

0 comments on commit 96004e9

Please sign in to comment.