GET Egress Sink
GET/workspaces/:workspaceId/egress-sinks/:egressSinkName
Get details about existing egress sink.
Request
Path Parameters
workspaceId uuidrequired
Name of the workspace.
egressSinkName stringrequired
Name of the egress sink.
Responses
- 200
- 404
- 423
Egress sink details.
- application/json
- Schema
- Example (from schema)
- example-1
Schema
name stringrequired
workspaceId uuidrequired
properties
object
required
isEnabled booleanrequired
config
object
required
azureEventHub
object
endpoint stringrequired
eventHubName stringrequired
sharedAccessKeyName stringrequired
azureServiceBus
object
endpoint stringrequired
entityName stringrequired
sharedAccessKeyName stringrequired
sql
object
postgreSql
object
required
host stringrequired
port stringrequired
database stringrequired
username stringrequired
grafana
object
otel
object
endpoint urirequired
basicAuth
object
required
username stringrequired
delta
object
azureBlobStorage
object
required
blobServiceUri urirequired
storageAccountName stringrequired
containerName stringrequired
awsS3
object
bucketName stringrequired
region stringrequired
iamUserAccessKey
object
required
accessKey stringrequired
protocolVersion int32required
Possible values: [V1
, V2
, Mixed
]
{
"name": "string",
"workspaceId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"properties": {
"isEnabled": true,
"config": {
"azureEventHub": {
"endpoint": "string",
"eventHubName": "string",
"sharedAccessKeyName": "string"
},
"azureServiceBus": {
"endpoint": "string",
"entityName": "string",
"sharedAccessKeyName": "string"
},
"sql": {
"postgreSql": {
"host": "string",
"port": "string",
"database": "string",
"username": "string"
}
},
"grafana": {},
"otel": {
"endpoint": "string",
"basicAuth": {
"username": "string"
}
},
"delta": {
"azureBlobStorage": {
"blobServiceUri": "string",
"storageAccountName": "string",
"containerName": "string"
}
},
"awsS3": {
"bucketName": "string",
"region": "string",
"iamUserAccessKey": {
"accessKey": "string"
}
}
},
"protocolVersion": "V1"
}
}
{
"name": "example-sink-01",
"workspaceId": "00000000-0000-0000-0000-000000000001",
"properties": {
"config": {
"azureEventHub": {
"eventHubName": "example-event-hub",
"endpoint": "sb://example-event-hub-namespace.servicebus.windows.net",
"sharedAccessKeyName": "example-key-name"
}
},
"isEnabled": true,
"protocolVersion": "V2"
}
}
Egress sink or workspace not found.
- application/problem+json
- Schema
- Example (from schema)
Schema
type stringnullable
title stringnullable
status int32nullable
detail stringnullable
instance stringnullable
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}
Workspace is disabled.
- application/problem+json
- Schema
- Example (from schema)
Schema
type stringnullable
title stringnullable
status int32nullable
detail stringnullable
instance stringnullable
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}
Loading...