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

feature: Azure Application Insights Integration #2691

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions api/dataStores.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ components:
$ref: "#/components/schemas/SignalFX"
awsxray:
$ref: "#/components/schemas/AwsXRay"
azureappinsights:
$ref: "#/components/schemas/AzureAppInsights"
createdAt:
type: string
format: date-time
Expand Down Expand Up @@ -84,6 +86,17 @@ components:
type: string
token:
type: string
AzureAppInsights:
type: object
properties:
useAzureActiveDirectoryAuth:
type: boolean
accessToken:
type: string
connectionType:
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I think this connection type is something we can move to be part of the base data store object, I don't want to do it now but it will be very useful in the future

$ref: "#/components/schemas/SupportedConnectionTypes"
resourceArmId:
type: string
AwsXRay:
type: object
properties:
Expand Down Expand Up @@ -180,7 +193,11 @@ components:
datadog,
awsxray,
honeycomb,
azureappinsights,
]
SupportedClients:
type: string
enum: [http, grpc]
SupportedConnectionTypes:
type: string
enum: [direct, collector]
232 changes: 232 additions & 0 deletions cli/openapi/model_azure_app_insights.go

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

58 changes: 47 additions & 11 deletions cli/openapi/model_data_store.go

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