Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added azure blob instrumentation #967

Merged
merged 40 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
db609ef
feat: fix conflicts
Dec 13, 2023
42ed18d
feat: instrumented download
Dec 2, 2023
8e4c263
feat: added testcase for download-err
Dec 2, 2023
8b75543
feat: added testcase for download-promise
Dec 2, 2023
883bb9c
feat: added new testcase for download
Dec 2, 2023
5b5d16f
feat: added env var check and testcase
Dec 4, 2023
df19772
feat: cleanup
Dec 5, 2023
1d0b7ca
feat: cleanup and adds env
Dec 5, 2023
928e1c7
feat: node version
Dec 5, 2023
5f05295
feat: adds span properties
Dec 9, 2023
15b0e95
feat: fix conflicts
Dec 13, 2023
dfcfddf
feat: adds testcase for download
Dec 12, 2023
e72298a
feat: conflict fix
Dec 13, 2023
d09e558
feat: fix conflicts
Dec 13, 2023
7b177e2
feat: cleanup
Dec 13, 2023
8282c92
feat: added retry
Dec 29, 2023
7226901
feat: added error check
Dec 29, 2023
6f3f111
feat: fixed error check
Dec 29, 2023
9be7141
feat: adds mjs app
Dec 29, 2023
06caf15
feat: formatting
Dec 29, 2023
0b21141
feat: ran prettier
Jan 2, 2024
fa65bc8
feat: fixed typo
Jan 2, 2024
d34170c
feat: changed env name
Jan 2, 2024
094abdc
feat: added outgoing http request
Jan 5, 2024
47da2b2
feat: expectExactlyOneMatching
Jan 8, 2024
d28a90a
feat: added disables tracing test
Jan 8, 2024
ab39b2c
feat: removed unwanted verify
Jan 8, 2024
7f89793
feat: added test for suppressed
Jan 8, 2024
ab3f7ce
feat: added total spans check
Jan 8, 2024
744b5dd
feat: review comments
Jan 8, 2024
e334f70
feat: review comments
Jan 9, 2024
007e773
chore: added access key in 1pwd
Jan 12, 2024
2479487
chore: cleanup
Jan 12, 2024
b70ee17
feat: added node-fetch
Feb 12, 2024
8957867
feat: regenerated app.mjs
Feb 12, 2024
b76cb74
ci: run all tests
kirrg001 Feb 23, 2024
0e2d8a9
feat: code cleanup
Feb 26, 2024
4a66e58
feat: code cleanup
Feb 26, 2024
de10062
feat: fixed testcases
Feb 26, 2024
9736978
chore: currencies
kirrg001 Apr 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions currencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -619,5 +619,14 @@
"cloudNative": false,
"isBeta": false,
"ignoreUpdates": false
},
{
"name": "@azure/storage-blob",
"policy": "30-days",
"lastSupportedVersion": "",
"latestVersion": "",
"cloudNative": false,
"isBeta": false,
"ignoreUpdates": false
}
]
176 changes: 134 additions & 42 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@
{
"name": "Arya Mohanan",
"email": "[email protected]"
},
{
"name": "Willian Carvalho",
"email": "[email protected]"
}
],
"scripts": {
Expand Down Expand Up @@ -84,6 +80,7 @@
"@aws-sdk/client-sqs": "^3.552.0",
"@aws-sdk/client-sqs-v3": "npm:@aws-sdk/[email protected]",
"@aws-sdk/lib-dynamodb": "^3.552.0",
"@azure/storage-blob": "^12.17.0",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@elastic/elasticsearch": "^8.13.1",
Expand Down
Loading