Instana Pipeline Feedback is an automatic analysis of application development and deployment pipeline events, correlated directly with application, infrastructure, and service performance data.
The following example assumes that you set the INSTANA_ENDPOINT_URL and INSTANA_API_TOKEN environment variables in your CircleCI project:
version: 2.1
orbs:
pipeline-feedback: instana/pipeline-feedback@2.0.1
workflows:
create_release:
jobs:
- pipeline-feedback/create_release:
release_name: My awesome test releaseIn case you want to customize which environment variables to use to look up the Instana endpoint URL and the respective API token, you can use the endpoint and api_token parameters as follows:
version: 2.1
orbs:
pipeline-feedback: instana/pipeline-feedback@2.0.1
workflows:
create_release:
jobs:
- pipeline-feedback/create_release:
endpoint: MY_INSTANA_ENDPOINT_URL
api_token: MY_INSTANA_API_TOKEN
release_name: My awesome test releaseIn the example above, the endpoint URL and the matching API token will be looked up using the MY_INSTANA_ENDPOINT_URL and MY_INSTANA_API_TOKEN environment variables, respectively.
Ah, our kind of person! Go ahead, open a PR.
Please be aware that we will be able to accept only code contributed under the Apache 2.0 license.