Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions cloudsmith/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG - Cloudsmith

### 1.2.0 / 2025-11-03

### Added

* Added real-time bandwidth metric (`cloudsmith.bandwidth_bytes_interval`) and related dashboard widget

### 1.1.1 / 2025-10-17

***Added***
Expand All @@ -24,5 +30,3 @@
### 0.0.2 / 2021-09-08

***Added***:

* Initial Release
13 changes: 12 additions & 1 deletion cloudsmith/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ The integration collects data from Cloudsmith's APIs and maps them to the follow
- **Events**: Security vulnerability findings, audit log activity, license and vulnerability policy violations, member summaries, and quota usage snapshots.
- **Service Checks**: Health status of quota consumption and API connectivity.

Optional realtime bandwidth metric (disabled by default) can be enabled to emit `cloudsmith.bandwidth_bytes_interval`, representing bytes downloaded over the most recent analytics interval. Enable it by setting `enable_realtime_bandwidth: true` in `cloudsmith.d/conf.yaml`.

With this integration, customers gain centralized observability over their Cloudsmith package infrastructure, helping enforce compliance, troubleshoot issues faster, and optimize resource planning.


Expand All @@ -25,7 +27,7 @@ For Agent v7.21+ / v6.21+, follow the instructions below to install the Cloudsmi
1. Run the following command to install the Agent integration:

```shell
datadog-agent integration install -t datadog-cloudsmith==1.1.0
datadog-agent integration install -t datadog-cloudsmith==1.2.0
```

2. Configure your integration similar to core [integrations][4].
Expand All @@ -34,6 +36,15 @@ For Agent v7.21+ / v6.21+, follow the instructions below to install the Cloudsmi

1. Edit the `cloudsmith.d/conf.yaml` file, in the `conf.d/` folder at the root of your Agent's configuration directory to start collecting your Cloudsmith performance data. See the [sample cloudsmith.d/conf.yaml][5] for all available configuration options.

Example snippet enabling realtime bandwidth:

```yaml
- url: https://api.cloudsmith.io/v1
cloudsmith_api_key: <API-KEY>
organization: <ORG-NAME>
enable_realtime_bandwidth: true
```
2. [Restart the Agent][6].
### Validation
Expand Down
6 changes: 6 additions & 0 deletions cloudsmith/assets/configuration/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,10 @@ files:
value:
type: string
example: Example CloudsmithOrg1
- name: enable_realtime_bandwidth
required: false
description: Enable realtime bandwidth metrics.
value:
type: boolean
example: false
- template: instances/default
Loading
Loading