We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80c4b5e commit f4bec9eCopy full SHA for f4bec9e
src/services/S3Service.ts
@@ -29,6 +29,7 @@ export class S3Service {
29
});
30
}
31
32
+ @Measure({ name: 'putObject' })
33
async putObjectContent(content: string | Buffer, bucketName: string, key: string) {
34
return await this.withClient(async (client) => {
35
return await client.send(
@@ -41,6 +42,7 @@ export class S3Service {
41
42
43
44
45
+ @Measure({ name: 'headObject' })
46
async getHeadObject(bucketName: string, key: string) {
47
48
0 commit comments