-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Copy account config schema files from backend to colive alongside the integrations #24259
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "additional_config_fields": [ | ||
| { | ||
| "key": "api_key", | ||
| "label": "Admin API key", | ||
| "editable": true, | ||
| "required": true, | ||
| "password": {} | ||
| } | ||
| ], | ||
| "dataflow_config": [ | ||
| { | ||
| "dataflow_id": "anthropic-compliance-logs" | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| { | ||
| "additional_config_fields": [ | ||
| { | ||
| "key": "api_key", | ||
| "label": "Admin API key", | ||
| "help": "An Anthropic Admin API key with permission to read usage and cost data. Generate one in the Anthropic Console under Settings > Admin Keys.", | ||
| "editable": true, | ||
| "required": true, | ||
| "password": {} | ||
| } | ||
| ], | ||
| "dataflow_config": [ | ||
| { | ||
| "dataflow_id": "anthropic-usage-metrics" | ||
| }, | ||
| { | ||
| "dataflow_id": "claude-daily-usage-dora-metrics" | ||
| }, | ||
| { | ||
| "dataflow_id": "anthropic-cloud-cost-metrics", | ||
| "toggle": { | ||
| "default": false, | ||
| "label": "Enable cost data ingestion", | ||
| "help": "You must be subscribed to Cloud Cost Management to use this data.", | ||
| "editable": true | ||
| }, | ||
| "legacy_flat_mapping": { | ||
| "enable_field": "ccm_enabled", | ||
| "should_map_legacy_fields": true | ||
| } | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| { | ||
| "additional_config_fields": [ | ||
| { | ||
| "key": "cluster_id", | ||
| "label": "Cluster ID", | ||
| "help": "The Cluster ID of your Proofpoint On-Demand instance.", | ||
| "editable": true, | ||
| "required": true, | ||
| "text": {} | ||
| }, | ||
| { | ||
| "key": "api_key", | ||
| "label": "API Key", | ||
| "help": "The API key of your Proofpoint On-Demand instance.", | ||
| "editable": true, | ||
| "required": true, | ||
| "password": {} | ||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| { | ||
| "additional_config_fields": [ | ||
| { | ||
| "key": "service_principal", | ||
| "label": "Service principal", | ||
| "help": "Your Proofpoint TAP service principal.", | ||
| "editable": true, | ||
| "required": true, | ||
| "text": {} | ||
| }, | ||
| { | ||
| "key": "secret", | ||
| "label": "Secret", | ||
| "help": "Your Proofpoint TAP secret.", | ||
| "editable": true, | ||
| "required": true, | ||
| "password": {} | ||
| }, | ||
| { | ||
| "key": "click_blocked", | ||
| "label": "Collect click blocked events", | ||
| "editable": true, | ||
| "checkbox": { | ||
| "default": true | ||
| } | ||
| }, | ||
| { | ||
| "key": "click_permitted", | ||
| "label": "Collect click permitted events", | ||
| "editable": true, | ||
| "checkbox": { | ||
| "default": true | ||
| } | ||
| }, | ||
| { | ||
| "key": "message_blocked", | ||
| "label": "Collect message blocked events", | ||
| "editable": true, | ||
| "checkbox": { | ||
| "default": true | ||
| } | ||
| }, | ||
| { | ||
| "key": "message_delivered", | ||
| "label": "Collect message delivered events", | ||
| "editable": true, | ||
| "checkbox": { | ||
| "default": true | ||
| } | ||
| } | ||
| ] | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Because Useful? React with 👍 / 👎. |
||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because
proofpoint_on_demand/assets/dataflows.yamldeclares the granularproofpoint-on-demand-logsdataflow, this account config needs a matchingdataflow_configentry (as the other granular account configs in this repo do). Without anydataflow_idbinding here, the account-config consumer has no way to enable or instantiate the Proofpoint On-Demand logs flow, so users can save credentials through this schema without starting log ingestion.Useful? React with 👍 / 👎.