-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor log streams create and update cmds
- Loading branch information
Showing
26 changed files
with
1,889 additions
and
777 deletions.
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
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,59 @@ | ||
--- | ||
layout: default | ||
--- | ||
# auth0 logs streams create datadog | ||
|
||
Build interactive dashboards and get alerted on critical issues. | ||
|
||
To create interactively, use `auth0 logs streams create datadog` with no arguments. | ||
|
||
To create non-interactively, supply the log stream name and other information through the flags. | ||
|
||
## Usage | ||
``` | ||
auth0 logs streams create datadog [flags] | ||
``` | ||
|
||
## Examples | ||
|
||
``` | ||
auth0 logs streams create datadog | ||
auth0 logs streams create datadog --name <name> | ||
auth0 logs streams create datadog --name <name> --region <region> | ||
auth0 logs streams create datadog --name <name> --region <region> --api-key <api-key> | ||
auth0 logs streams create datadog -n <name> -r <region> -k <api-key> | ||
auth0 logs streams create datadog -n mylogstream -r eu -k 121233123455 --json | ||
``` | ||
|
||
|
||
## Flags | ||
|
||
``` | ||
-k, --api-key string Datadog API Key. To obtain a key, see the Datadog Authentication documentation (https://docs.datadoghq.com/api/latest/authentication). | ||
--json Output in json format. | ||
-n, --name string The name of the log stream. | ||
-r, --region string The region in which the datadog dashboard is created. | ||
If you are in the datadog EU site ('app.datadoghq.eu'), the Region should be EU otherwise it should be US. | ||
``` | ||
|
||
|
||
## InheritedFlags | ||
|
||
``` | ||
--debug Enable debug mode. | ||
--no-color Disable colors. | ||
--no-input Disable interactivity. | ||
--tenant string Specific tenant to use. | ||
``` | ||
|
||
|
||
## Related Commands | ||
|
||
- [auth0 logs streams create datadog](auth0_logs_streams_create_datadog.md) - Create a new Datadog log stream | ||
- [auth0 logs streams create eventbridge](auth0_logs_streams_create_eventbridge.md) - Create a new Amazon Event Bridge log stream | ||
- [auth0 logs streams create eventgrid](auth0_logs_streams_create_eventgrid.md) - Create a new Azure Event Grid log stream | ||
- [auth0 logs streams create http](auth0_logs_streams_create_http.md) - Create a new Custom Webhook log stream | ||
- [auth0 logs streams create splunk](auth0_logs_streams_create_splunk.md) - Create a new Splunk log stream | ||
- [auth0 logs streams create sumo](auth0_logs_streams_create_sumo.md) - Create a new Sumo Logic log stream | ||
|
||
|
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,58 @@ | ||
--- | ||
layout: default | ||
--- | ||
# auth0 logs streams create eventbridge | ||
|
||
Stream real-time Auth0 data to over 15 targets like AWS Lambda. | ||
|
||
To create interactively, use `auth0 logs streams create eventbridge` with no arguments. | ||
|
||
To create non-interactively, supply the log stream name and other information through the flags. | ||
|
||
## Usage | ||
``` | ||
auth0 logs streams create eventbridge [flags] | ||
``` | ||
|
||
## Examples | ||
|
||
``` | ||
auth0 logs streams create eventbridge | ||
auth0 logs streams create eventbridge --name <name> | ||
auth0 logs streams create eventbridge --name <name> --aws-id <aws-id> | ||
auth0 logs streams create eventbridge --name <name> --aws-id <aws-id> --aws-region <aws-region> | ||
auth0 logs streams create eventbridge -n <name> -i <aws-id> -r <aws-region> | ||
auth0 logs streams create eventbridge -n mylogstream -i 99999999 -r "eu-west-1" --json | ||
``` | ||
|
||
|
||
## Flags | ||
|
||
``` | ||
-i, --aws-id string Id of the AWS account. | ||
-r, --aws-region string The AWS region in which eventbridge will be created, e.g. 'us-east-2'. | ||
--json Output in json format. | ||
-n, --name string The name of the log stream. | ||
``` | ||
|
||
|
||
## InheritedFlags | ||
|
||
``` | ||
--debug Enable debug mode. | ||
--no-color Disable colors. | ||
--no-input Disable interactivity. | ||
--tenant string Specific tenant to use. | ||
``` | ||
|
||
|
||
## Related Commands | ||
|
||
- [auth0 logs streams create datadog](auth0_logs_streams_create_datadog.md) - Create a new Datadog log stream | ||
- [auth0 logs streams create eventbridge](auth0_logs_streams_create_eventbridge.md) - Create a new Amazon Event Bridge log stream | ||
- [auth0 logs streams create eventgrid](auth0_logs_streams_create_eventgrid.md) - Create a new Azure Event Grid log stream | ||
- [auth0 logs streams create http](auth0_logs_streams_create_http.md) - Create a new Custom Webhook log stream | ||
- [auth0 logs streams create splunk](auth0_logs_streams_create_splunk.md) - Create a new Splunk log stream | ||
- [auth0 logs streams create sumo](auth0_logs_streams_create_sumo.md) - Create a new Sumo Logic log stream | ||
|
||
|
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,60 @@ | ||
--- | ||
layout: default | ||
--- | ||
# auth0 logs streams create eventgrid | ||
|
||
A single service for routing events from any source to destination. | ||
|
||
To create interactively, use `auth0 logs streams create eventgrid` with no arguments. | ||
|
||
To create non-interactively, supply the log stream name and other information through the flags. | ||
|
||
## Usage | ||
``` | ||
auth0 logs streams create eventgrid [flags] | ||
``` | ||
|
||
## Examples | ||
|
||
``` | ||
auth0 logs streams create eventgrid | ||
auth0 logs streams create eventgrid --name <name> | ||
auth0 logs streams create eventgrid --name <name> --azure-id <azure-id> | ||
auth0 logs streams create eventgrid --name <name> --azure-id <azure-id> --azure-region <azure-region> | ||
auth0 logs streams create eventgrid --name <name> --azure-id <azure-id> --azure-region <azure-region> --azure-group <azure-group> | ||
auth0 logs streams create eventgrid -n <name> -i <azure-id> -r <azure-region> -g <azure-group> | ||
auth0 logs streams create eventgrid -n mylogstream -i "b69a6835-57c7-4d53-b0d5-1c6ae580b6d5" -r northeurope -g "azure-logs-rg" --json | ||
``` | ||
|
||
|
||
## Flags | ||
|
||
``` | ||
-g, --azure-group string The name of the Azure resource group. | ||
-i, --azure-id string Id of the Azure subscription. | ||
-r, --azure-region string The region in which the Azure subscription is hosted. | ||
--json Output in json format. | ||
-n, --name string The name of the log stream. | ||
``` | ||
|
||
|
||
## InheritedFlags | ||
|
||
``` | ||
--debug Enable debug mode. | ||
--no-color Disable colors. | ||
--no-input Disable interactivity. | ||
--tenant string Specific tenant to use. | ||
``` | ||
|
||
|
||
## Related Commands | ||
|
||
- [auth0 logs streams create datadog](auth0_logs_streams_create_datadog.md) - Create a new Datadog log stream | ||
- [auth0 logs streams create eventbridge](auth0_logs_streams_create_eventbridge.md) - Create a new Amazon Event Bridge log stream | ||
- [auth0 logs streams create eventgrid](auth0_logs_streams_create_eventgrid.md) - Create a new Azure Event Grid log stream | ||
- [auth0 logs streams create http](auth0_logs_streams_create_http.md) - Create a new Custom Webhook log stream | ||
- [auth0 logs streams create splunk](auth0_logs_streams_create_splunk.md) - Create a new Splunk log stream | ||
- [auth0 logs streams create sumo](auth0_logs_streams_create_sumo.md) - Create a new Sumo Logic log stream | ||
|
||
|
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,62 @@ | ||
--- | ||
layout: default | ||
--- | ||
# auth0 logs streams create http | ||
|
||
Specify a URL you'd like Auth0 to post events to. | ||
|
||
To create interactively, use `auth0 logs streams create http` with no arguments. | ||
|
||
To create non-interactively, supply the log stream name and other information through the flags. | ||
|
||
## Usage | ||
``` | ||
auth0 logs streams create http [flags] | ||
``` | ||
|
||
## Examples | ||
|
||
``` | ||
auth0 logs streams create http | ||
auth0 logs streams create http --name <name> | ||
auth0 logs streams create http --name <name> --endpoint <endpoint> | ||
auth0 logs streams create http --name <name> --endpoint <endpoint> --type <type> | ||
auth0 logs streams create http --name <name> --endpoint <endpoint> --type <type> --format <format> | ||
auth0 logs streams create http --name <name> --endpoint <endpoint> --type <type> --format <format> --authorization <authorization> | ||
auth0 logs streams create http -n <name> -e <endpoint> -t <type> -f <format> -a <authorization> | ||
auth0 logs streams create http -n mylogstream -e "https://example.com/webhook/logs" -t "application/json" -f "JSONLINES" -a "AKIAXXXXXXXXXXXXXXXX" --json | ||
``` | ||
|
||
|
||
## Flags | ||
|
||
``` | ||
-a, --authorization string Sent in the HTTP "Authorization" header with each request. | ||
-e, --endpoint string The HTTP endpoint to send streaming logs to. | ||
-f, --format string The format of data sent over HTTP. Options are "JSONLINES", "JSONARRAY" or "JSONOBJECT" | ||
--json Output in json format. | ||
-n, --name string The name of the log stream. | ||
-t, --type string The "Content-Type" header to send over HTTP. Common value is "application/json". | ||
``` | ||
|
||
|
||
## InheritedFlags | ||
|
||
``` | ||
--debug Enable debug mode. | ||
--no-color Disable colors. | ||
--no-input Disable interactivity. | ||
--tenant string Specific tenant to use. | ||
``` | ||
|
||
|
||
## Related Commands | ||
|
||
- [auth0 logs streams create datadog](auth0_logs_streams_create_datadog.md) - Create a new Datadog log stream | ||
- [auth0 logs streams create eventbridge](auth0_logs_streams_create_eventbridge.md) - Create a new Amazon Event Bridge log stream | ||
- [auth0 logs streams create eventgrid](auth0_logs_streams_create_eventgrid.md) - Create a new Azure Event Grid log stream | ||
- [auth0 logs streams create http](auth0_logs_streams_create_http.md) - Create a new Custom Webhook log stream | ||
- [auth0 logs streams create splunk](auth0_logs_streams_create_splunk.md) - Create a new Splunk log stream | ||
- [auth0 logs streams create sumo](auth0_logs_streams_create_sumo.md) - Create a new Sumo Logic log stream | ||
|
||
|
Oops, something went wrong.