Skip to content

Commit

Permalink
* Updates ecs endpoint documentation
Browse files Browse the repository at this point in the history
* Updates k8s helm chart docs
  • Loading branch information
Lastin committed Apr 8, 2024
1 parent 8beeeaa commit 3cab8ee
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 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

0 comments on commit 3cab8ee

Please sign in to comment.