{"id":20263631,"url":"https://github.com/springerpe/datadog-agent-boshrelease","last_synced_at":"2026-06-11T07:31:16.973Z","repository":{"id":80987194,"uuid":"79326573","full_name":"SpringerPE/datadog-agent-boshrelease","owner":"SpringerPE","description":"Datadog agent from source!","archived":false,"fork":false,"pushed_at":"2018-08-14T13:58:05.000Z","size":60,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-03T22:40:46.435Z","etag":null,"topics":["bosh","bosh-release","datadog-agent"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SpringerPE.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-01-18T09:54:53.000Z","updated_at":"2017-04-20T18:30:57.000Z","dependencies_parsed_at":"2023-06-04T03:15:09.218Z","dependency_job_id":null,"html_url":"https://github.com/SpringerPE/datadog-agent-boshrelease","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/SpringerPE/datadog-agent-boshrelease","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpringerPE%2Fdatadog-agent-boshrelease","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpringerPE%2Fdatadog-agent-boshrelease/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpringerPE%2Fdatadog-agent-boshrelease/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpringerPE%2Fdatadog-agent-boshrelease/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SpringerPE","download_url":"https://codeload.github.com/SpringerPE/datadog-agent-boshrelease/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpringerPE%2Fdatadog-agent-boshrelease/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34188272,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bosh","bosh-release","datadog-agent"],"created_at":"2024-11-14T11:35:46.989Z","updated_at":"2026-06-11T07:31:16.948Z","avatar_url":"https://github.com/SpringerPE.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Datadog Agent release for BOSH\n\n* For all stemcells (Python source implementation)\n* Automatically defines tags based on deployments, names and jobs\n* Process, network, ntp and disk integrations by default\n* Monit processes are added automatically to process integration\n* You can define additional integrations\n\n\n# Configuration\n\nUpload the release to Bosh director\n\nCreate a `runtime-config.yaml` file:\n```\nreleases:\n- name: datadog-agent\n  version: 1\n\naddons:\n- name: dd-agent\n  jobs:\n  - name: dd-agent\n    release: datadog-agent\n  properties:\n    dd:\n      use_dogstatsd: yes\n      api_key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n      tags: [\"pe\", \"bosh\", \"bosh:bosh-exp\"]\n\ntags:\n  owner: pe\n  email: platform-engineering@springernature.com\n```\n\nUpload runtime-config to Bosh Director: `bosh update runtime-config  runtime-config.yaml`\n\nRe-deploy the deployments to automatically add the agent.\n\nYou can also add the release to the manifest and deploy it\n\n\n# Development\n\nAfter cloning this repository, run:\n\n```\ngit submodule init\ngit submodule update\n```\nto update the gohai submodule. Gohai is a binary (golang) program used by Datadog Agent to collect\nbasic information from the server. There is a script `bosh_prepare` which also runs the git\nsubmouldes commands and downloads all sources to the `blobs` directory:\n```\n./bosh_prepare\n```\n\nIt will get all sources specified in the packages/*/spec files (commented out) for\nlocal development, then you can create the release (final) with:\n```\n./bosh_final_release\n```\nwhich will upload the tarball to github and make the new blobs public available in the S3 bucket\n\n\n### Note\n\n`bosh_prepare` ensures that `gohai` git submodule is populated in `src/gohai`. In order\nto avoid including a git package -only needed because of `go get` command to download\nthe dependencies- the script runs `go get` locally to get all dependencies, so it is\nassuming you have `go` installed. After those dependencies were downloaded, the\nbinary package can be compiled, but a new folder `src/gohai/src` appears, because of\nthat bosh will complain about untracked git changes, but there are two workarounds:\n\n* use `bosh create release --force`\n* add to the `.gitmodules` file a config parameter for ignoring dirty state of the submodule: `ignore = dirty`\n\nHere, the second option is used.\n\n\n# Author\n\nSpringer Nature Platform Engineering, Jose Riguera Lopez (jose.riguera@springer.com)\n\nCopyright 2017 Springer Nature\n\n\n\n# License\n\nApache 2.0 License\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspringerpe%2Fdatadog-agent-boshrelease","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspringerpe%2Fdatadog-agent-boshrelease","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspringerpe%2Fdatadog-agent-boshrelease/lists"}