Skip to content

Commit

Permalink
add runtime id to monitoring (#995)
Browse files Browse the repository at this point in the history
  • Loading branch information
akinsola-guardian committed May 24, 2024
1 parent a74c200 commit 39d58eb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/monitoring-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ jobs:
id-token: write
contents: read
pull-requests: write # to be able to comment on released pull requests
env:
LAMBDA_RUNTIME_ID: ${{ secrets.LAMBDA_RUNTIME_ID }}
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion cdk/lib/monitoring.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class Monitoring extends GuStack {

const lambdaBaseName = 'cmp-monitoring';

const runTimeId = process.env.LAMBDA_RUNTIME_ID;
const runTimeId = "0cdcfbdefbc5e7d3343f73c2e2dd3cba17d61dea0686b404502a0c9ce83931b9";

const prodDurationInMinutes = 2;

Expand Down

1 comment on commit 39d58eb

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.
Category Percentage Covered / Total
🟢 Statements 91.04% 254/279
🟢 Branches 81.67% 98/120
🟢 Functions 88.57% 62/70
🟢 Lines 90.74% 245/270

Test suite run success

331 tests passing in 16 suites.

Report generated by 🧪jest coverage report action from 39d58eb

Please sign in to comment.