Skip to content

WIP: Otel trace workflow #14

WIP: Otel trace workflow

WIP: Otel trace workflow #14

# To run locally
# act -W .github/workflows/test-trace-steps.yaml --container-architecture linux/amd64 -b ci/logs:/logs
name: Test Workflow
on:
pull_request:
branches:
- main
paths:
- .github/workflows/test-trace-steps.yaml
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.11'
- name: Install Python dependencies
run: |
pip install --no-cache-dir opentelemetry-sdk opentelemetry-exporter-otlp opentelemetry-instrumentation
- name: Test connection with curl
run: |
curl --cert "$CLIENT_CERT_ROSA_OTEL" \
--key "$CLIENT_KEY_ROSA_OTEL" \
--cacert "$SERVER_CERT_ROSA_OTEL" \
https://apps.platform-sts.pcbk.p1.openshiftapps.com
env:
CLIENT_CERT_ROSA_OTEL: ${{ secrets.CLIENT_CERT_ROSA_OTEL }}
CLIENT_KEY_ROSA_OTEL: ${{ secrets.CLIENT_KEY_ROSA_OTEL }}
SERVER_CERT_ROSA_OTEL: ${{ secrets.SERVER_CERT_ROSA_OTEL }}
- name: Configure OpenTelemetry Collector
run: |
echo '
receivers:
otlp:
protocols:
grpc:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
exporters:
otlphttp:
endpoint: https://apps.platform-sts.pcbk.p1.openshiftapps.com
tls:
insecure: false
cert_pem: ${{ secrets.CLIENT_CERT_ROSA_OTEL }}
key_pem: ${{ secrets.CLIENT_KEY_ROSA_OTEL }}
ca_pem: ${{ secrets.SERVER_CERT_ROSA_OTEL }}
logging:
loglevel: debug
service:
pipelines:
traces:
receivers: [otlp]
exporters: [logging,otlphttp]
' > otel-collector-config.yaml
- name: Run OpenTelemetry Collector
run: |
curl --proto '=https' --tlsv1.2 -fOL https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v0.102.1/otelcol_0.102.1_linux_amd64.tar.gz
tar -xvf otelcol_0.102.1_linux_amd64.tar.gz
chmod +x otelcol
./otelcol --config otel-collector-config.yaml &
- name: Start build trace
run: |
export WORKFLOW_NAME="test-workflow"
export STEP_NAME="build"
export TRACE_ACTION="start"
python ci/trace-steps.py
- name: Build
run: |
echo "Simulating build step..."
sleep 2
- name: End build trace
run: |
export WORKFLOW_NAME="test-workflow"
export STEP_NAME="build"
export TRACE_ACTION="end"
python ci/trace-steps.py
- name: Start test trace
run: |
export WORKFLOW_NAME="test-workflow"
export STEP_NAME="test"
export TRACE_ACTION="start"
python ci/trace-steps.py
- name: Test
run: |
echo "Simulating test step..."
sleep 2
- name: End test trace
run: |
export WORKFLOW_NAME="test-workflow"
export STEP_NAME="test"
export TRACE_ACTION="end"
python ci/trace-steps.py