Skip to content

Commit 00eeae4

Browse files
feat: Add macOS Unified Logging Receiver - Config/Factory (#44100)
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Adds the factory and configuration implementation for the macOS Unified Logging receiver. This PR follows the steps outlined in `CONTRIBUTING.md` to split up the PRs for a new component. <!-- Issue number (e.g. #1234) or full URL to issue, if applicable. --> #### Link to tracking issue #44089 <!--Describe what testing was performed and which tests were added.--> #### Testing Unit tests for the configuration and factory. <!--Describe the documentation added.--> #### Documentation The receiver is completely documented in `README.md`. <!--Please delete paragraphs that you did not use before submitting.-->
1 parent 63ebde1 commit 00eeae4

33 files changed

+1967
-0
lines changed

.chloggen/config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,7 @@ components:
275275
- receiver/kubeletstats
276276
- receiver/libhoney
277277
- receiver/loki
278+
- receiver/macosunifiedlogging
278279
- receiver/memcached
279280
- receiver/mongodb
280281
- receiver/mongodbatlas
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: new_component
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. receiver/filelog)
7+
component: receiver/macosunifiedlogging
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Add a new receiver for macOS Unified Logging.
11+
12+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
13+
issues: [44089]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext:
19+
20+
# If your change doesn't affect end users or the exported elements of any package,
21+
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
22+
# Optional: The change log or logs in which this entry should be included.
23+
# e.g. '[user]' or '[user, api]'
24+
# Include 'user' if the change is relevant to end users.
25+
# Include 'api' if there is a change to a library API.
26+
# Default: '[user]'
27+
change_logs: [user]

.codecov.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -780,6 +780,10 @@ component_management:
780780
name: receiver_loki
781781
paths:
782782
- receiver/lokireceiver/**
783+
- component_id: receiver_macosunifiedlogging
784+
name: receiver_macosunifiedlogging
785+
paths:
786+
- receiver/macosunifiedloggingreceiver/**
783787
- component_id: receiver_memcached
784788
name: receiver_memcached
785789
paths:

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ receiver/kafkareceiver/ @open-telemetry
295295
receiver/kubeletstatsreceiver/ @open-telemetry/collector-contrib-approvers @dmitryax @TylerHelmuth @ChrsMark
296296
receiver/libhoneyreceiver/ @open-telemetry/collector-contrib-approvers @TylerHelmuth @mterhar
297297
receiver/lokireceiver/ @open-telemetry/collector-contrib-approvers @mar4uk
298+
receiver/macosunifiedloggingreceiver/ @open-telemetry/collector-contrib-approvers @Caleb-Hurshman
298299
receiver/memcachedreceiver/ @open-telemetry/collector-contrib-approvers @jsirianni
299300
receiver/mongodbatlasreceiver/ @open-telemetry/collector-contrib-approvers @justinianvoss22
300301
receiver/mongodbreceiver/ @open-telemetry/collector-contrib-approvers @justinianvoss22

.github/ISSUE_TEMPLATE/beta_stability.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ body:
295295
- receiver/kubeletstats
296296
- receiver/libhoney
297297
- receiver/loki
298+
- receiver/macosunifiedlogging
298299
- receiver/memcached
299300
- receiver/mongodb
300301
- receiver/mongodbatlas

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,7 @@ body:
298298
- receiver/kubeletstats
299299
- receiver/libhoney
300300
- receiver/loki
301+
- receiver/macosunifiedlogging
301302
- receiver/memcached
302303
- receiver/mongodb
303304
- receiver/mongodbatlas

.github/ISSUE_TEMPLATE/feature_request.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,7 @@ body:
292292
- receiver/kubeletstats
293293
- receiver/libhoney
294294
- receiver/loki
295+
- receiver/macosunifiedlogging
295296
- receiver/memcached
296297
- receiver/mongodb
297298
- receiver/mongodbatlas

.github/ISSUE_TEMPLATE/other.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,7 @@ body:
292292
- receiver/kubeletstats
293293
- receiver/libhoney
294294
- receiver/loki
295+
- receiver/macosunifiedlogging
295296
- receiver/memcached
296297
- receiver/mongodb
297298
- receiver/mongodbatlas

.github/ISSUE_TEMPLATE/unmaintained.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ body:
297297
- receiver/kubeletstats
298298
- receiver/libhoney
299299
- receiver/loki
300+
- receiver/macosunifiedlogging
300301
- receiver/memcached
301302
- receiver/mongodb
302303
- receiver/mongodbatlas

.github/component_labels.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@ receiver/kafkareceiver receiver/kafka
276276
receiver/kubeletstatsreceiver receiver/kubeletstats
277277
receiver/libhoneyreceiver receiver/libhoney
278278
receiver/lokireceiver receiver/loki
279+
receiver/macosunifiedloggingreceiver receiver/macosunifiedlogging
279280
receiver/memcachedreceiver receiver/memcached
280281
receiver/mongodbatlasreceiver receiver/mongodbatlas
281282
receiver/mongodbreceiver receiver/mongodb

0 commit comments

Comments
 (0)