using var meter = new Meter("my-meter");
var providerBuilder = Sdk.CreateMeterProviderBuilder().AddMeter(meter.Name);
providerBuilder
.AddOtlpExporter((exporterOptions, metricReaderOptions) =>
{
metricReaderOptions.PeriodicExportingMetricReaderOptions = new PeriodicExportingMetricReaderOptions
{
ExportIntervalMilliseconds = Convert.ToInt32("10000"),
};
This file contains hidden or 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
| <h2 class="sr-only" style="position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)">Comparison of a multi-series line chart versus a per-interval distribution heatmap for CPU usage across up to 10,000 hosts, with hover drill-down.</h2> | |
| <div style="display:flex; align-items:center; gap:12px; margin:0 0 1rem; flex-wrap:wrap;"> | |
| <span style="font-size:14px; color:var(--text-secondary);">Fleet size</span> | |
| <div id="sizeBtns" style="display:flex; gap:8px;"> | |
| <button data-n="100" style="font-size:13px; padding:6px 14px;">100</button> | |
| <button data-n="1000" style="font-size:13px; padding:6px 14px;">1,000</button> | |
| <button data-n="10000" style="font-size:13px; padding:6px 14px;">10,000</button> | |
| </div> | |
| <span id="genStat" style="font-size:13px; color:var(--text-muted);"></span> |
This file contains hidden or 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
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| name: promql-to-scrape-config | |
| data: | |
| config.yaml: | | |
| metrics: | |
| - metric_name: temporal_cloud_v0_frontend_service_error_count | |
| query: temporal_cloud_v0_frontend_service_error_count | |
| - metric_name: temporal_cloud_v0_frontend_service_pending_requests |
This file contains hidden or 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
| otelDeployment: | |
| config: | |
| receivers: | |
| redis: | |
| endpoint: <redis-host>:6379 | |
| service: | |
| pipelines: | |
| metrics/internal: | |
| receivers: [redis] | |
| processors: [batch] |
This file contains hidden or 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
| otelDeployment: | |
| config: | |
| receivers: | |
| prometheus: | |
| config: | |
| scrape_configs: | |
| - job_name: pod_metrics | |
| kubernetes_sd_configs: | |
| - role: pod | |
| relabel_configs: |
This file contains hidden or 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
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "time" | |
| "github.com/ClickHouse/clickhouse-go/v2" | |
| ) |
This file contains hidden or 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
| package main | |
| import ( | |
| "context" | |
| "errors" | |
| "math/rand" | |
| "time" | |
| "go.opentelemetry.io/otel" | |
| "go.opentelemetry.io/otel/attribute" |
-
Warm-up (5 minutes):
- Begin with a light jog in place or jumping jacks to get your heart rate up.
- Perform some dynamic stretches to warm up your muscles, focusing on your legs, arms, and shoulders.
-
Circuit 1 (10 minutes):
- Jump rope for 1 minute at a moderate pace.
- Immediately perform 10 push-ups.
- Repeat this sequence for a total of 5 rounds.
- │ 11887564887837025943 │ 2023-06-26 12:59:00 │ 104381 │ (prev point)
┌──────────fingerprint─┬──────────────────ts─┬──value─┐
│ 11887564887837025943 │ 2023-06-26 13:00:00 │ 104402 │
│ 11887564887837025943 │ 2023-06-26 13:01:00 │ 104461 │
│ 11887564887837025943 │ 2023-06-26 13:02:00 │ 104504 │
│ 11887564887837025943 │ 2023-06-26 13:03:00 │ 104532 │
│ 11887564887837025943 │ 2023-06-26 13:04:00 │ 104590 │
- │ 12004891769856389124 │ 2023-06-26 12:59:30 │ 71476 │ (prev point)
This file contains hidden or 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
| diff --git a/exporter/opentelemetry-exporter-otlp-proto-common/tests/test_log_encoder.py b/exporter/opentelemetry-exporter-otlp-proto-common/tests/test_log_encoder.py | |
| index c35ced93b..825950a0a 100644 | |
| --- a/exporter/opentelemetry-exporter-otlp-proto-common/tests/test_log_encoder.py | |
| +++ b/exporter/opentelemetry-exporter-otlp-proto-common/tests/test_log_encoder.py | |
| @@ -41,6 +41,7 @@ from opentelemetry.proto.resource.v1.resource_pb2 import ( | |
| ) | |
| from opentelemetry.sdk._logs import LogData | |
| from opentelemetry.sdk._logs import LogRecord as SDKLogRecord | |
| +from opentelemetry.sdk._logs import LogLimits | |
| from opentelemetry.sdk.resources import Resource as SDKResource |
NewerOlder