Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4daa1f8
enhancement(observability): Add `_utilization_mean` buffer metrics (#…
bruceg Jan 8, 2026
935f1f7
docs(file source): Clarify glob syntax in file source documentation (…
thomasqueirozb Jan 8, 2026
a5a6b5e
chore(deps): bump lru to 0.16.3 (#24463)
thomasqueirozb Jan 8, 2026
94a2f40
enhancement(observability): Add configuration for buffer utilization …
bruceg Jan 9, 2026
a63cde1
chore(deps): bump alpine from 3.22 to 3.23 in /distribution/docker/al…
dependabot[bot] Jan 9, 2026
1a676fd
chore(deps): update dependabot.yml to update distroless docker images…
thomasqueirozb Jan 9, 2026
9d7dd5c
chore(ci): Add step-security-bot to cla allowlist (#24474)
thomasqueirozb Jan 9, 2026
a3a0e3a
fix(opentelemetry source): emit component_received_event* metrics whe…
thomasqueirozb Jan 12, 2026
d55bb0b
fix(postgres sink): enable TLS flag (#23536)
thomasqueirozb Jan 12, 2026
0091dad
chore(website): Tim.sara/transcend removal (#24419)
timsara331 Jan 13, 2026
6fa2b12
chore(website deps): bump undici from 7.16.0 to 7.18.2 in /website (#…
dependabot[bot] Jan 15, 2026
65afcd2
enhancement(observability)!: Expand internal histogram precision (#24…
bruceg Jan 15, 2026
46654ad
fix(metrics): absolute to incremental histogram conversion (#24472)
dd-sebastien-lb Jan 15, 2026
a5d7cc3
enhancement(cli): Shell autocompletion for vector cli (#24414)
weriomat Jan 15, 2026
b8a8d7a
feat(gcp_cloud_storage sink): add content_type option (#24477)
AnuragEkkati Jan 15, 2026
3728a4d
enhancement(observability): Standardize buffer size metric names (#24…
bruceg Jan 16, 2026
473e31c
fix(host_metrics source): fix tcp netlink bug (#24441)
mushrowan Jan 16, 2026
18676af
chore(website): update hugo templates to work with 0.152.2 (#24140)
thomasqueirozb Jan 20, 2026
a3bb693
chore(deps, internal docs): Add usage method to VRL functions (#24504)
thomasqueirozb Jan 20, 2026
249657b
chore(codecs): Merge `src/codecs` into `lib/codecs` (#24516)
bruceg Jan 20, 2026
f5d0c56
enhancement(observability): Add metrics to measure total event proces…
bruceg Jan 20, 2026
399584f
fix(sources): do not log TCP connection resets (#24517)
gwenaskell Jan 21, 2026
f6e3282
fix(ci): move BRANCH into env (#24526)
thomasqueirozb Jan 21, 2026
2ba78cc
Merge remote-tracking branch 'origin/master' into update_azure_crates
thomasqueirozb Jan 21, 2026
28d9027
Separate reqwest v0.11 and v0.12 again
thomasqueirozb Jan 21, 2026
cbfbf4e
Allow CDLA-Permissive-2.0
thomasqueirozb Jan 21, 2026
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
1 change: 1 addition & 0 deletions .github/actions/spelling/allow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ netcat
netdata
Netflix
netlify
netlink
Neue
neuronull
Nextbook
Expand Down
30 changes: 30 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,36 @@ updates:
docker-images:
patterns:
- "*"
- package-ecosystem: "docker"
directory: "/distribution/docker/distroless-static"
schedule:
interval: "monthly"
time: "04:00" # UTC
labels:
- "domain: releasing"
- "no-changelog"
commit-message:
prefix: "chore(deps)"
open-pull-requests-limit: 100
groups:
docker-images:
patterns:
- "*"
- package-ecosystem: "docker"
directory: "/distribution/docker/distroless-libc"
schedule:
interval: "monthly"
time: "04:00" # UTC
labels:
- "domain: releasing"
- "no-changelog"
commit-message:
prefix: "chore(deps)"
open-pull-requests-limit: 100
groups:
docker-images:
patterns:
- "*"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
branch: 'vector'
remote-repository-name: cla-signatures
remote-organization-name: DataDog
allowlist: step-security-bot

# the followings are the optional inputs - If the optional inputs are not given, then default values will be taken
#allowlist: user1,bot*
#create-file-commit-message: 'For example: Creating file for storing CLA Signatures'
#signed-commit-message: 'For example: $contributorName has signed the CLA in $owner/$repo#$pullRequestNo'
#custom-notsigned-prcomment: 'pull request comment with Introductory message to ask new contributors to sign'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/preview_site_trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ jobs:
# Validate branch name
- name: Validate branch name and set output
id: validate
env:
BRANCH: ${{ github.head_ref }}
run: |
BRANCH="${{ github.head_ref }}"
if [[ ! "$BRANCH" =~ ^[a-zA-Z0-9_-]+$ ]]; then
echo "valid=false" >> $GITHUB_OUTPUT
else
Expand Down
Loading
Loading