All URIs are relative to https://app.launchdarkly.com
Method | HTTP request | Description |
---|---|---|
create_insight_group | POST /api/v2/engineering-insights/insights/group | Create insight group |
delete_insight_group | DELETE /api/v2/engineering-insights/insights/groups/{insightGroupKey} | Delete insight group |
get_insight_group | GET /api/v2/engineering-insights/insights/groups/{insightGroupKey} | Get insight group |
get_insight_groups | GET /api/v2/engineering-insights/insights/groups | List insight groups |
get_insights_scores | GET /api/v2/engineering-insights/insights/scores | Get insight scores |
patch_insight_group | PATCH /api/v2/engineering-insights/insights/groups/{insightGroupKey} | Patch insight group |
InsightGroup create_insight_group(post_insight_group_params)
Create insight group
Create insight group
- Api Key Authentication (ApiKey):
import time
import launchdarkly_api
from launchdarkly_api.api import insights_scores_beta_api
from launchdarkly_api.model.validation_failed_error_rep import ValidationFailedErrorRep
from launchdarkly_api.model.insight_group import InsightGroup
from launchdarkly_api.model.forbidden_error_rep import ForbiddenErrorRep
from launchdarkly_api.model.post_insight_group_params import PostInsightGroupParams
from launchdarkly_api.model.not_found_error_rep import NotFoundErrorRep
from launchdarkly_api.model.rate_limited_error_rep import RateLimitedErrorRep
from launchdarkly_api.model.unauthorized_error_rep import UnauthorizedErrorRep
from launchdarkly_api.model.status_conflict_error_rep import StatusConflictErrorRep
from pprint import pprint
# Defining the host is optional and defaults to https://app.launchdarkly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = launchdarkly_api.Configuration(
host = "https://app.launchdarkly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: ApiKey
configuration.api_key['ApiKey'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['ApiKey'] = 'Bearer'
# Enter a context with an instance of the API client
with launchdarkly_api.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = insights_scores_beta_api.InsightsScoresBetaApi(api_client)
post_insight_group_params = PostInsightGroupParams(
name="Production - All Apps",
key="default-production-all-apps",
project_key="default",
environment_key="production",
application_keys=["billing-service","inventory-service"],
) # PostInsightGroupParams |
# example passing only required values which don't have defaults set
try:
# Create insight group
api_response = api_instance.create_insight_group(post_insight_group_params)
pprint(api_response)
except launchdarkly_api.ApiException as e:
print("Exception when calling InsightsScoresBetaApi->create_insight_group: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
post_insight_group_params | PostInsightGroupParams |
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
201 | Created | - |
400 | Invalid request | - |
401 | Invalid access token | - |
403 | Forbidden | - |
404 | Invalid resource identifier | - |
409 | Status conflict | - |
429 | Rate limited | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_insight_group(insight_group_key)
Delete insight group
Delete insight group
- Api Key Authentication (ApiKey):
import time
import launchdarkly_api
from launchdarkly_api.api import insights_scores_beta_api
from launchdarkly_api.model.validation_failed_error_rep import ValidationFailedErrorRep
from launchdarkly_api.model.forbidden_error_rep import ForbiddenErrorRep
from launchdarkly_api.model.not_found_error_rep import NotFoundErrorRep
from launchdarkly_api.model.rate_limited_error_rep import RateLimitedErrorRep
from launchdarkly_api.model.unauthorized_error_rep import UnauthorizedErrorRep
from pprint import pprint
# Defining the host is optional and defaults to https://app.launchdarkly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = launchdarkly_api.Configuration(
host = "https://app.launchdarkly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: ApiKey
configuration.api_key['ApiKey'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['ApiKey'] = 'Bearer'
# Enter a context with an instance of the API client
with launchdarkly_api.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = insights_scores_beta_api.InsightsScoresBetaApi(api_client)
insight_group_key = "insightGroupKey_example" # str | The insight group key
# example passing only required values which don't have defaults set
try:
# Delete insight group
api_instance.delete_insight_group(insight_group_key)
except launchdarkly_api.ApiException as e:
print("Exception when calling InsightsScoresBetaApi->delete_insight_group: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
insight_group_key | str | The insight group key |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
204 | Action succeeded | - |
400 | Invalid request | - |
401 | Invalid access token | - |
403 | Forbidden | - |
404 | Invalid resource identifier | - |
429 | Rate limited | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InsightGroup get_insight_group(insight_group_key)
Get insight group
Get insight group ### Expanding the insight group response LaunchDarkly supports expanding the insight group response to include additional fields. To expand the response, append the expand
query parameter and include the following: * scores
includes details on all of the scores used in the engineering insights metrics views for this group * environment
includes details on each environment associated with this group For example, use ?expand=scores
to include the scores
field in the response. By default, this field is not included in the response.
- Api Key Authentication (ApiKey):
import time
import launchdarkly_api
from launchdarkly_api.api import insights_scores_beta_api
from launchdarkly_api.model.validation_failed_error_rep import ValidationFailedErrorRep
from launchdarkly_api.model.insight_group import InsightGroup
from launchdarkly_api.model.forbidden_error_rep import ForbiddenErrorRep
from launchdarkly_api.model.not_found_error_rep import NotFoundErrorRep
from launchdarkly_api.model.rate_limited_error_rep import RateLimitedErrorRep
from launchdarkly_api.model.unauthorized_error_rep import UnauthorizedErrorRep
from pprint import pprint
# Defining the host is optional and defaults to https://app.launchdarkly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = launchdarkly_api.Configuration(
host = "https://app.launchdarkly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: ApiKey
configuration.api_key['ApiKey'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['ApiKey'] = 'Bearer'
# Enter a context with an instance of the API client
with launchdarkly_api.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = insights_scores_beta_api.InsightsScoresBetaApi(api_client)
insight_group_key = "insightGroupKey_example" # str | The insight group key
expand = "expand_example" # str | Options: `scores`, `environment` (optional)
# example passing only required values which don't have defaults set
try:
# Get insight group
api_response = api_instance.get_insight_group(insight_group_key)
pprint(api_response)
except launchdarkly_api.ApiException as e:
print("Exception when calling InsightsScoresBetaApi->get_insight_group: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
# Get insight group
api_response = api_instance.get_insight_group(insight_group_key, expand=expand)
pprint(api_response)
except launchdarkly_api.ApiException as e:
print("Exception when calling InsightsScoresBetaApi->get_insight_group: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
insight_group_key | str | The insight group key | |
expand | str | Options: `scores`, `environment` | [optional] |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Insight group response | - |
400 | Invalid request | - |
401 | Invalid access token | - |
403 | Forbidden | - |
404 | Invalid resource identifier | - |
429 | Rate limited | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InsightGroupCollection get_insight_groups()
List insight groups
List groups for which you are collecting insights ### Expanding the insight groups collection response LaunchDarkly supports expanding the insight groups collection response to include additional fields. To expand the response, append the expand
query parameter and include the following: * scores
includes details on all of the scores used in the engineering insights metrics views for each group * environment
includes details on each environment associated with each group * metadata
includes counts of the number of insight groups with particular indicators, such as "execellent," "good," "fair," and so on. For example, use ?expand=scores
to include the scores
field in the response. By default, this field is not included in the response.
- Api Key Authentication (ApiKey):
import time
import launchdarkly_api
from launchdarkly_api.api import insights_scores_beta_api
from launchdarkly_api.model.validation_failed_error_rep import ValidationFailedErrorRep
from launchdarkly_api.model.forbidden_error_rep import ForbiddenErrorRep
from launchdarkly_api.model.rate_limited_error_rep import RateLimitedErrorRep
from launchdarkly_api.model.unauthorized_error_rep import UnauthorizedErrorRep
from launchdarkly_api.model.insight_group_collection import InsightGroupCollection
from pprint import pprint
# Defining the host is optional and defaults to https://app.launchdarkly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = launchdarkly_api.Configuration(
host = "https://app.launchdarkly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: ApiKey
configuration.api_key['ApiKey'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['ApiKey'] = 'Bearer'
# Enter a context with an instance of the API client
with launchdarkly_api.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = insights_scores_beta_api.InsightsScoresBetaApi(api_client)
limit = 1 # int | The number of insight groups to return. Default is 20. Must be between 1 and 20 inclusive. (optional)
offset = 1 # int | Where to start in the list. Use this with pagination. For example, an offset of 10 skips the first ten items and then returns the next items in the list, up to the query `limit`. (optional)
sort = "sort_example" # str | Sort flag list by field. Prefix field with <code>-</code> to sort in descending order. Allowed fields: name (optional)
query = "query_example" # str | Filter list of insights groups by name. (optional)
expand = "expand_example" # str | Options: `scores`, `environment`, `metadata` (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
# List insight groups
api_response = api_instance.get_insight_groups(limit=limit, offset=offset, sort=sort, query=query, expand=expand)
pprint(api_response)
except launchdarkly_api.ApiException as e:
print("Exception when calling InsightsScoresBetaApi->get_insight_groups: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
limit | int | The number of insight groups to return. Default is 20. Must be between 1 and 20 inclusive. | [optional] |
offset | int | Where to start in the list. Use this with pagination. For example, an offset of 10 skips the first ten items and then returns the next items in the list, up to the query `limit`. | [optional] |
sort | str | Sort flag list by field. Prefix field with <code>-</code> to sort in descending order. Allowed fields: name | [optional] |
query | str | Filter list of insights groups by name. | [optional] |
expand | str | Options: `scores`, `environment`, `metadata` | [optional] |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Insight groups collection response | - |
400 | Invalid request | - |
401 | Invalid access token | - |
403 | Forbidden | - |
429 | Rate limited | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InsightScores get_insights_scores(project_key, environment_key)
Get insight scores
Return insights scores, based on the given parameters. This data is also used in engineering insights metrics views.
- Api Key Authentication (ApiKey):
import time
import launchdarkly_api
from launchdarkly_api.api import insights_scores_beta_api
from launchdarkly_api.model.validation_failed_error_rep import ValidationFailedErrorRep
from launchdarkly_api.model.forbidden_error_rep import ForbiddenErrorRep
from launchdarkly_api.model.insight_scores import InsightScores
from launchdarkly_api.model.rate_limited_error_rep import RateLimitedErrorRep
from launchdarkly_api.model.unauthorized_error_rep import UnauthorizedErrorRep
from pprint import pprint
# Defining the host is optional and defaults to https://app.launchdarkly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = launchdarkly_api.Configuration(
host = "https://app.launchdarkly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: ApiKey
configuration.api_key['ApiKey'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['ApiKey'] = 'Bearer'
# Enter a context with an instance of the API client
with launchdarkly_api.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = insights_scores_beta_api.InsightsScoresBetaApi(api_client)
project_key = "projectKey_example" # str | The project key
environment_key = "environmentKey_example" # str | The environment key
application_key = "applicationKey_example" # str | Comma separated list of application keys (optional)
# example passing only required values which don't have defaults set
try:
# Get insight scores
api_response = api_instance.get_insights_scores(project_key, environment_key)
pprint(api_response)
except launchdarkly_api.ApiException as e:
print("Exception when calling InsightsScoresBetaApi->get_insights_scores: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
# Get insight scores
api_response = api_instance.get_insights_scores(project_key, environment_key, application_key=application_key)
pprint(api_response)
except launchdarkly_api.ApiException as e:
print("Exception when calling InsightsScoresBetaApi->get_insights_scores: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
project_key | str | The project key | |
environment_key | str | The environment key | |
application_key | str | Comma separated list of application keys | [optional] |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Insight score response | - |
400 | Invalid request | - |
401 | Invalid access token | - |
403 | Forbidden | - |
429 | Rate limited | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InsightGroup patch_insight_group(insight_group_key, json_patch)
Patch insight group
Update an insight group. Updating an insight group uses a JSON patch representation of the desired changes. To learn more, read Updates.
- Api Key Authentication (ApiKey):
import time
import launchdarkly_api
from launchdarkly_api.api import insights_scores_beta_api
from launchdarkly_api.model.json_patch import JSONPatch
from launchdarkly_api.model.validation_failed_error_rep import ValidationFailedErrorRep
from launchdarkly_api.model.patch_failed_error_rep import PatchFailedErrorRep
from launchdarkly_api.model.insight_group import InsightGroup
from launchdarkly_api.model.forbidden_error_rep import ForbiddenErrorRep
from launchdarkly_api.model.not_found_error_rep import NotFoundErrorRep
from launchdarkly_api.model.rate_limited_error_rep import RateLimitedErrorRep
from launchdarkly_api.model.unauthorized_error_rep import UnauthorizedErrorRep
from pprint import pprint
# Defining the host is optional and defaults to https://app.launchdarkly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = launchdarkly_api.Configuration(
host = "https://app.launchdarkly.com"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: ApiKey
configuration.api_key['ApiKey'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['ApiKey'] = 'Bearer'
# Enter a context with an instance of the API client
with launchdarkly_api.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = insights_scores_beta_api.InsightsScoresBetaApi(api_client)
insight_group_key = "insightGroupKey_example" # str | The insight group key
json_patch = JSONPatch([
PatchOperation(
op="replace",
path="/exampleField",
value=None,
),
]) # JSONPatch |
# example passing only required values which don't have defaults set
try:
# Patch insight group
api_response = api_instance.patch_insight_group(insight_group_key, json_patch)
pprint(api_response)
except launchdarkly_api.ApiException as e:
print("Exception when calling InsightsScoresBetaApi->patch_insight_group: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
insight_group_key | str | The insight group key | |
json_patch | JSONPatch |
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Insight group response | - |
400 | Invalid request | - |
401 | Invalid access token | - |
403 | Forbidden | - |
404 | Invalid resource identifier | - |
422 | Invalid patch content | - |
429 | Rate limited | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]