sumologic
Cloud-native, real-time, unified logs and metrics analytics platform.
Provider Summary
total services: 32
total methods: 267
total methods: 267
total resources: 150
total selectable resources: 83
total selectable resources: 83
See also:
[SHOW
] [DESCRIBE
] [REGISTRY
]
Installation
REGISTRY PULL sumologic v23.01.00104;
Authentication
{
"sumologic": {
"type": string, // authentication type to use, suported values: basic
"credentialsenvvar": string, // env var name containing the base64 encoded string in the form: username:password
}
}
Example (Mac/Linux)
export SUMO_CREDS=$(echo -n 'youraccessid:YOURACCESSTOKEN' | base64 --wrap 0)
AUTH='{ "sumologic": { "type": "basic", "credentialsenvvar": "SUMO_CREDS" } }'
stackql shell --auth="${AUTH}"
Example (PowerShell)
$env:SUMO_CREDS = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes("youraccessid:YOURACCESSTOKEN"))
$Auth = "{ 'sumologic': { 'type': 'basic', 'credentialsenvvar': 'SUMO_CREDS' } }"
stackql.exe shell --auth=$Auth