-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add observability stack * updates for initial grafana * Add CloudWatch Logs example 1 and 2 * Add metrics to CloudWatch * Shuffle around the Prometheus code * Add xray tracing * add temp changes * update * scrub --------- Co-authored-by: Mike Cowgill <[email protected]>
- Loading branch information
Showing
11 changed files
with
311 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
!jest.config.js | ||
*.d.ts | ||
node_modules | ||
.node-version | ||
|
||
# CDK asset staging directory | ||
.cdk.staging | ||
cdk.out | ||
|
||
*.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
extensions: | ||
sigv4auth: | ||
service: "aps" | ||
region: "us-east-2" | ||
|
||
receivers: | ||
otlp: | ||
protocols: | ||
http: | ||
|
||
exporters: | ||
prometheusremotewrite: | ||
endpoint: "https://aps-workspaces.us-east-2.amazonaws.com/workspaces/<WORKSPACE_ID>/api/v1/remote_write" | ||
auth: | ||
authenticator: sigv4auth | ||
logging: | ||
loglevel: debug | ||
awsxray: | ||
|
||
service: | ||
extensions: [sigv4auth] | ||
pipelines: | ||
metrics: | ||
receivers: [otlp] | ||
processors: [] | ||
exporters: [logging, prometheusremotewrite] | ||
traces: | ||
receivers: [otlp] | ||
exporters: [logging, awsxray] | ||
telemetry: | ||
logs: | ||
level: debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.