Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Baselime/docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ankcorn committed Apr 11, 2024
2 parents 4430d94 + 3cab8ee commit 8efee31
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
14 changes: 9 additions & 5 deletions sending-data/platforms/aws/ecs-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,13 @@ export function API({ stack }: StackContext) {
logging: new ecs.FireLensLogDriver({
options: {
"Name": "http",
"Host": "ecs-logs-ingest.baselime.io",
"Host": "events.baselime.io",
"Port": "443",
"TLS": "on",
"format": "json",
"retry_limit": "2",
"header": `x-api-key ${key}`,
"URI": "/v1/ecs-logs"
},
}),
}
Expand All @@ -99,12 +100,13 @@ resource "aws_ecs_task_definition" "example_task" {
log_driver = "awsfirelens"
options = {
"Name" = "http"
"Host" = "ecs-logs-ingest.baselime.io"
"Host" = "events.baselime.io"
"Port" = "443"
"TLS" = "on"
"format" = "json"
"retry_limit" = "2"
"header" = "x-api-key <BASELIME_API_KEY>"
"URI" = "/v1/ecs-logs"
}
}
}
Expand All @@ -126,12 +128,13 @@ taskDef.addContainer("container", {
logging: new ecs.FireLensLogDriver({
options: {
"Name": "http",
"Host": "ecs-logs-ingest.baselime.io",
"Host": "events.baselime.io",
"Port": "443",
"TLS": "on",
"format": "json",
"retry_limit": "2",
"header": `x-api-key <BASELIME_API_KEY>`,
"URI": "/v1/ecs-logs"
},
}),
});
Expand All @@ -153,13 +156,14 @@ taskDef.addContainer("container", {
"logConfiguration": {
"logDriver": "awsfirelens",
"options": {
"Host": "ecs-logs-ingest.baselime.io",
"Host": "events.baselime.io",
"Name": "http",
"Port": "443",
"TLS": "on",
"format": "json",
"header": "x-api-key <BASELIME_API_KEY>",
"retry_limit": "2"
"retry_limit": "2",
"URI": "/v1/ecs-logs"
},
"secretOptions": []
}
Expand Down
4 changes: 2 additions & 2 deletions sending-data/platforms/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Obtain your API key from the console [Baselime console](https://console.baselime
Next install the Baselime Helm chart
```bash
helm repo add baselime-logs-exporter https://github.com/baselime/helm-charts
helm repo add baselime-logs-exporter https://baselime.github.io/helm-charts
helm repo update
helm install baselime-logs-exporter baselime-logs-exporter/baselime-logs-exporter-logs-exporter --values custom-values.yaml
helm install baselime-logs-exporter baselime-logs-exporter/baselime-logs-exporter --values custom-values.yaml
```

---
Expand Down
2 changes: 1 addition & 1 deletion tux/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ order: -1

---

Tux is an AI assistant that resolves errors and performance issues in your applications. Tux understands your architecture by leveraging the powers of Baselime to gather context from your telemtry data, and enables you to resolve issues before they become problems.
Tux is an AI assistant that resolves errors and performance issues in your applications. Tux understands your architecture by leveraging the powers of Baselime to gather context from your telemetry data, and enables you to resolve issues before they become problems.

[!embed](https://www.youtube.com/watch?v=gcF1XW8aIuQ)

Expand Down

0 comments on commit 8efee31

Please sign in to comment.