-
Notifications
You must be signed in to change notification settings - Fork 113
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
Add example extension to egress data to Azure #1953
Add example extension to egress data to Azure #1953
Conversation
Here is the setup I've been testing with:
{
"$schema": "https://aka.ms/dotnet-monitor-schema",
"DiagnosticPort": {
"ConnectionMode": "Listen",
"EndpointName": "dotnetmonitorpipe"
},
"DefaultProcess": {
"Filters": [
{
"ProcessName": "AllocationTestApp"
}
]
},
"Egress": {
"AzureBlobStorage": {
"monitorBlob": {
"AccountKeyName": "AzAccountKey",
"AccountUri": "https://pafenelodnmegress.blob.core.windows.net",
"ContainerName": "dotnet-monitor",
"BlobPrefix": "artifact"
}
},
"FileSystem": {
"localFile": {
"DirectoryPath": "C:\\scratch"
}
},
"Properties": {
"AzAccountKey": "=====[REDACTED, this should be an Az Storage base 64 encoded key]======"
},
"azure-storage": {
"azureTest": {
"AccountKeyName": "AzAccountKey",
"AccountUri": "https://pafenelodnmegress.blob.core.windows.net",
"ContainerName": "dotnet-monitor",
"BlobPrefix": "artifact"
},
"azure2Test": {
"AccountKeyName": "AzAccountKey",
"AccountUri": "https://companyblob.blob.core.windows.net",
"ContainerName": "debugme",
"BlobPrefix": "artifact"
}
},
"AWS_S3": {
"myBucketsEgress": {
"AccountID": "sdfsdfhsldkf",
"AccountKey": "foihj2930j0239r3322"
}
},
"External": {
"extTest": {}
},
"MyCustomProvider": {
"custom": {}
}
}
}
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left some feedback, but looks good otherwise.
Todos after this PR gets done:
|
Adds code to accept data from extension interface and egress to Azure.