Skip to content

A rudimentary GitHub Action that allows you to send events to Azure Application Insights

License

Notifications You must be signed in to change notification settings

LobsterInk/Cloud.GitHubAppInsightsActions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

App Insights for GitHub Actions

Sometimes a DevOps engineer wants to see changes to the deployment infrastructure on the observability dashboard, so that the changes can be correlated with resource usages or increases in errors. This composite run steps GitHub Action is a rudimentary attempt to solve that challenge by allowing you to send events to Azure Application Insights. Each event will be sent with some default GitHub environment variables. Full example usage of this action can be seen in this repository.

Usage

      - name: 'AppInsights: Begin Terraform'
        uses: lobsterink/cloud.githubappinsightsactions@main
        with:
            instrumentation-key: '${{ secrets.APP_INSIGHTS_KEY }}'
            event-name: 'provision-azure'
            event-data: |
              {
                "type": "start"
              }

      - name: "Terraform Apply"
        run: terraform apply -auto-approve

      - name: 'AppInsights: End Terraform'
        uses: lobsterink/cloud.githubappinsightsactions@main
        with:
            instrumentation-key: '${{ secrets.APP_INSIGHTS_KEY }}'
            event-name: 'provision-azure'
            event-data: |
              {
                "type": "end"
              }

About

A rudimentary GitHub Action that allows you to send events to Azure Application Insights

Resources

License

Stars

Watchers

Forks

Packages

No packages published