-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into localhost_listen
- Loading branch information
Showing
148 changed files
with
894 additions
and
9,406 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -158,6 +158,22 @@ jobs: | |
name: msi-build | ||
path: ./tests/zeroconfig/windows/testdata/docker-setup/ | ||
|
||
- name: Get latest signalfx-dotnet-tracing release | ||
id: dotnet-tracing | ||
uses: pozetroninc/[email protected] | ||
with: | ||
owner: signalfx | ||
repo: signalfx-dotnet-tracing | ||
excludes: prerelease, draft | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Set SIGNALFX_DOTNET_TRACING_VERSION | ||
run: | | ||
version="${{ steps.dotnet-tracing.outputs.release }}" | ||
sed -i "s|SIGNALFX_DOTNET_TRACING_VERSION|${version#v}|" tests/zeroconfig/windows/testdata/resource_traces/aspnetcore.yaml | ||
sed -i "s|SIGNALFX_DOTNET_TRACING_VERSION|${version#v}|" tests/zeroconfig/windows/testdata/resource_traces/aspnetfx.yaml | ||
shell: bash | ||
|
||
- name: Run the test script | ||
working-directory: tests/zeroconfig/windows/ | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
cmd/otelcol/config/collector/config.d.linux/receivers/oracledb.discovery.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
##################################################################################### | ||
# This file is generated by the Splunk Distribution of the OpenTelemetry Collector. # | ||
# # | ||
# It reflects the default configuration bundled in the Collector executable for use # | ||
# in discovery mode (--discovery) and is provided for reference or customization. # | ||
# Please note that any changes made to this file will need to be reconciled during # | ||
# upgrades of the Collector. # | ||
##################################################################################### | ||
# oracledb: | ||
# enabled: true | ||
# rule: | ||
# docker_observer: type == "container" and any([name, image, command], {# matches "(?i)oracle"}) and not (command matches "splunk.discovery") | ||
# host_observer: type == "hostport" and command matches "(?i)oracle" and not (command matches "splunk.discovery") | ||
# k8s_observer: type == "port" and pod.name matches "(?i)oracle" | ||
# config: | ||
# default: | ||
# endpoint: splunk.discovery.default | ||
# username: splunk.discovery.default | ||
# password: splunk.discovery.default | ||
# service: splunk.discovery.default | ||
# status: | ||
# metrics: | ||
# successful: | ||
# - strict: oracledb.cpu_time | ||
# first_only: true | ||
# log_record: | ||
# severity_text: info | ||
# body: oracledb receiver is working! | ||
# statements: | ||
# failed: | ||
# - regexp: "connection refused" | ||
# first_only: true | ||
# log_record: | ||
# severity_text: info | ||
# append_pattern: true | ||
# body: The container is not serving http connections. | ||
# - regexp: "received goaway and there are no active streams" | ||
# first_only: true | ||
# log_record: | ||
# severity_text: info | ||
# append_pattern: true | ||
# body: Unable to connect and scrape metrics. | ||
# - regexp: "dial tcp: lookup" | ||
# first_only: true | ||
# log_record: | ||
# severity_text: info | ||
# append_pattern: true | ||
# body: Unable to resolve oracledb tcp endpoint | ||
# - regexp: 'error executing select .*: EOF' | ||
# first_only: true | ||
# log_record: | ||
# severity_text: info | ||
# append_pattern: true | ||
# body: Unable to execute select from oracledb. Verify endpoint and user permissions. | ||
# partial: | ||
# - regexp: "listener does not currently know of service requested" | ||
# first_only: true | ||
# log_record: | ||
# severity_text: info | ||
# append_pattern: true | ||
# body: >- | ||
# Make sure your oracledb service is correctly specified using the | ||
# `--set splunk.discovery.receivers.oracledb.config.service="<service>"` command or the | ||
# `SPLUNK_DISCOVERY_RECEIVERS_oracledb_CONFIG_service="<service>"` environment variable. | ||
# - regexp: 'invalid username/password' | ||
# first_only: true | ||
# log_record: | ||
# severity_text: info | ||
# append_pattern: true | ||
# body: >- | ||
# Make sure your user credentials are correctly specified using the | ||
# `--set splunk.discovery.receivers.oracledb.config.username="<username>"` and | ||
# `--set splunk.discovery.receivers.oracledb.config.password="<password>"` command or the | ||
# `SPLUNK_DISCOVERY_RECEIVERS_oracledb_CONFIG_username="<username>"` and | ||
# `SPLUNK_DISCOVERY_RECEIVERS_oracledb_CONFIG_password="<password>"` environment variables. | ||
# |
Oops, something went wrong.