You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature: Generate function and extension logs via Telemetry API receiver (open-telemetry#1347)
* Added WithLogs and its handling
* nits
* Added extensions
* Fixed unit tests
* Added unit test cases
* Added config (open-telemetry#26)
* Added severityTextToNumber function
* Corrected README.md
* Handled empty types array
* Added CRITICAL & ALL
* Removed invalid test case
* Fixed code after rebase
* Updated README.md
* Used time.RFC3339 format
* Applied review comments
* Added WARNING, Updated test cases, Added String.ToUpper
Copy file name to clipboardExpand all lines: collector/receiver/telemetryapireceiver/README.md
+20-6Lines changed: 20 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
# Telemetry API Receiver
2
2
3
-
| Status ||
4
-
| ------------------------ |-----------------|
5
-
| Stability |[alpha]|
6
-
| Supported pipeline types | traces|
7
-
| Distributions |[extension]|
3
+
| Status ||
4
+
| ------------------------ |--------------|
5
+
| Stability |[alpha]|
6
+
| Supported pipeline types | traces, logs|
7
+
| Distributions |[extension]|
8
8
9
9
This receiver generates telemetry in response to events from the [Telemetry API](https://docs.aws.amazon.com/lambda/latest/dg/telemetry-api.html). It does this by setting up an endpoint and registering itself with the Telemetry API on startup.
10
10
@@ -15,11 +15,25 @@ Supported events:
15
15
16
16
## Configuration
17
17
18
-
There are currently no configuration parameters available for this receiver. It can be enabled via the following configuration:
|`port`| 4325 | HTTP server port to receive Telemetry API data. |
21
+
|`types`|["platform", "function", "extension"]|[Types](https://docs.aws.amazon.com/lambda/latest/dg/telemetry-api-reference.html#telemetry-subscribe-api) of telemetry to subscribe to |
0 commit comments