-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[src] Azure Ocean Cluster V2 - Export Logs (#614)
[src] Data Integration - Support Azure Blob as a new vendor
- Loading branch information
Showing
10 changed files
with
70 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,5 @@ example: s3 | |
schema: | ||
type: string | ||
enum: | ||
- s3 | ||
- s3 | ||
- azureBlob |
16 changes: 16 additions & 0 deletions
16
api/services/dataIntegration/schemas/azureBlobDataIntegrationCreate.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
type: object | ||
title: Azure Blob | ||
required: | ||
- storageAccount | ||
- container | ||
properties: | ||
storageAccount: | ||
type: string | ||
description: | | ||
The name of the storage account to use. | ||
example: myStorageAccount | ||
container: | ||
description: | | ||
The container in which your files will be stored within the storage account. | ||
type: string | ||
example: dev |
13 changes: 13 additions & 0 deletions
13
api/services/dataIntegration/schemas/azureBlobDataIntegrationUpdate.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
type: object | ||
title: Azure Blob | ||
properties: | ||
storageAccount: | ||
type: string | ||
description: | | ||
The name of the storage account to use. | ||
example: myStorageAccount | ||
container: | ||
description: | | ||
The container in which your files will be stored within the storage account. | ||
type: string | ||
example: dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
type: object | ||
title: Ocean AKS Logging | ||
description: The Ocean AKS Logging object. | ||
required: | ||
- export | ||
properties: | ||
export: | ||
type: object | ||
title: The Ocean AKS Logging Export | ||
description: The Ocean AKS Logging Export object. | ||
required: | ||
- azureBlob | ||
properties: | ||
azureBlob: | ||
type: object | ||
title: The Ocean AKS Logging Azure Blob Export | ||
description: | | ||
Exports your cluster's logs to the storage account and container configured on the storage account [data integration](/#operation/DataIntegrationCreate) given. | ||
Each file contains logs of 3 minutes where each log is separated by a new line and saved as a JSON. | ||
The file formats are `container`/`accountId`_`oceanId`_`oceanName`_`startTime`.log | ||
required: | ||
- id | ||
properties: | ||
id: | ||
type: string | ||
description: The identifier of The Azure Blob data integration to export the logs to. | ||
example: di-123 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters