Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Small fixes for examples & pr template #103

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
- [ ] Create test cases
- [ ] Update changelog
<!-- Use these for release PRs:
- [ ] Update package version in `pyprojevt.toml`
- [ ] Update package version in `pyproject.toml`
- [ ] Update spec version in `constants.py`
- [ ] Move changes to a new section in `CHANGELOG.md` -->
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import time
from autometrics import autometrics, init
from opentelemetry.sdk.metrics import Counter
from opentelemetry.sdk.metrics.export import (
AggregationTemporality,
)

# Autometrics supports exporting metrics to OTLP collectors via gRPC and HTTP transports.
# This example uses the gRPC transport, available settings are similar to the OpenTelemetry
Expand All @@ -10,7 +14,15 @@
init(
exporter={
"type": "otlp-proto-grpc",
"endpoint": "http://localhost:4317", # You don't need to set this if you are using the default endpoint
"insecure": True, # Enabled for http transport
"push_interval": 1000,
# Here are some other available settings:
# "timeout": 10,
# "headers": {"x-something": "value"},
# "aggregation_temporality": {
# Counter: AggregationTemporality.CUMULATIVE,
# },
},
service_name="otlp-exporter",
)
Expand Down
11 changes: 11 additions & 0 deletions examples/export_metrics/otlp-http.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import time
from autometrics import autometrics, init
from opentelemetry.sdk.metrics import Counter
from opentelemetry.sdk.metrics.export import (
AggregationTemporality,
)

# Autometrics supports exporting metrics to OTLP collectors via gRPC and HTTP transports.
# This example uses the HTTP transport, available settings are similar to the OpenTelemetry
Expand All @@ -10,7 +14,14 @@
init(
exporter={
"type": "otlp-proto-http",
"endpoint": "http://localhost:4318/", # You don't need to set this if you are using the default endpoint
"push_interval": 1000,
# Here are some other available settings:
# "timeout": 10,
# "headers": {"x-something": "value"},
# "aggregation_temporality": {
# Counter: AggregationTemporality.CUMULATIVE,
# },
},
service_name="otlp-exporter",
)
Expand Down