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
Copy file name to clipboardexpand all lines: docs/sources/configure/export-data.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ Beyla uses lowercase fields for YAML configuration and uppercase names for envir
34
34
|`OTEL_EXPORTER_OTLP_PROTOCOL`| Similar to the shared endpoint, the protocol for metrics and traces. | string | Inferred from port usage |
35
35
|`insecure_skip_verify`<br>`BEYLA_OTEL_INSECURE_SKIP_VERIFY`| If `true`, Beyla skips verifying and accepts any server certificate. Only override this setting for non-production environments. | boolean |`false`|
36
36
|`interval`<br>`BEYLA_METRICS_INTERVAL`| The duration between exports. | Duration |`60s`|
37
-
|`features`<br>`BEYLA_OTEL_METRICS_FEATURES`| The list of metric groups Beyla exports data for, refer to [metrics export features](#metrics-export-features). Accepted values `application`, `application_span`, `application_service_graph`, `application_process`, and `network`. | list of strings |`["application"]`|
37
+
|`features`<br>`BEYLA_OTEL_METRICS_FEATURES`| The list of metric groups Beyla exports data for, refer to [metrics export features](#metrics-export-features). Accepted values `application`, `application_span`, `application_service_graph`, `application_process`, `network` and `network_inter_zone`.| list of strings |`["application"]`|
38
38
|`allow_service_graph_self_references`<br>`BEYLA_OTEL_ALLOW_SERVICE_GRAPH_SELF_REFERENCES`| Does Beyla include self-referencing service in service graph generation, for example a service that calls itself. Self referencing isn't useful service graphs and increases data cardinality. | boolean |`false`|
39
39
|`instrumentations`<br>`BEYLA_OTEL_METRICS_INSTRUMENTATIONS`| The list of metrics instrumentation Beyla collects data for, refer to [metrics instrumentation](#metrics-instrumentation) section. | list of strings |`["*"]`|
40
40
|`buckets`| Sets how you can override bucket boundaries of diverse histograms, refer to [override histogram buckets]({{< relref "./metrics-histograms.md" >}}). | (n/a) | Object |
@@ -217,7 +217,7 @@ of Beyla: application-level metrics or network metrics.
217
217
discovery is the best choice for service graph metrics.
218
218
- If the list contains `application_process`, the Beyla Prometheus exporter exports metrics about the processes that
219
219
run the instrumented application.
220
-
- If the list contains `network`, the Beyla Prometheus exporter exports network-level
220
+
- If the list contains `network` or `network_inter_zone`, the Beyla Prometheus exporter exports network-level
221
221
metrics; but only if the Prometheus `port` property is defined. For network-level metrics options visit the
Copy file name to clipboardexpand all lines: docs/sources/network/_index.md
+15-5
Original file line number
Diff line number
Diff line change
@@ -19,14 +19,22 @@ To get started using Beyla networking metrics, consult the [quickstart setup doc
19
19
20
20
## Metric attributes
21
21
22
-
Network metrics provides a single metric:
22
+
Beyla provides two families of network metrics:
23
23
24
-
-`beyla.network.flow.bytes`, if it is exported via OpenTelemetry.
25
-
-`beyla_network_flow_bytes_total`, if it is exported by a Prometheus endpoint.
24
+
***Network flow bytes** as the number of bytes observed between two network endpoints.
25
+
-`beyla.network.flow.bytes`, if it is exported via OpenTelemetry.
26
+
-`beyla_network_flow_bytes_total`, if it is exported by a Prometheus endpoint.
27
+
- To enable it, add the `network` option to the [BEYLA_OTEL_METRICS_FEATURES or BEYLA_PROMETHEUS_FEATURES]({{< relref "../configure/export-data.md" >}}) configuration option.
28
+
***Inter-zone bytes** as the number of bytes observed between two network endpoints in different Cloud Availability Zones.
29
+
-`beyla.network.inter.zone.bytes`, if it is exported via OpenTelemetry.
30
+
-`beyla_network_inter_zone_bytes_total`, if it is exported by a Prometheus endpoint.
31
+
- More information about how to enable it in the [Measuring traffic between Cloud availability zones]({{< relref "./inter-az.md" >}}) documentation.
26
32
27
-
The metric represents a counter of the Number of bytes observed between two network endpoints, and can have the attributes in the following table.
33
+
Network metric can have the attributes in the following table.
28
34
29
-
By default, only the following attributes are reported: `k8s.src.owner.name`, `k8s.src.namespace`, `k8s.dst.owner.name`, `k8s.dst.namespace`, and `k8s.cluster.name`.
35
+
By default, only the following attributes are reported for network flow bytes: `k8s.src.owner.name`, `k8s.src.namespace`, `k8s.dst.owner.name`, `k8s.dst.namespace`, and `k8s.cluster.name`.
36
+
37
+
For the inter-zone bytes metric, the default attributes are `k8s.cluster.name`, `src.zone` and `dst.zone`.
30
38
31
39
| Attribute name (OpenTelemetry / Prometheus) | Description |
@@ -55,6 +63,8 @@ By default, only the following attributes are reported: `k8s.src.owner.name`, `k
55
63
|`k8s.src.node.name` / `k8s_src.node_name`| Name of the source Node |
56
64
|`k8s.dst.node.name` / `k8s_dst.node_name`| Name of the destination Node |
57
65
|`k8s.cluster.name` / `k8s_cluster_name`| Name of the Kubernetes cluster. Beyla can auto-detect it on Google Cloud, Microsoft Azure, and Amazon Web Services. For other providers, set the `BEYLA_KUBE_CLUSTER_NAME` property |
66
+
|`src.zone` / `src_zone`| Name of the source Cloud Availability Zone |
67
+
|`dsg.zone` / `dst_zone`| Name of the destination Cloud Availability Zone |
0 commit comments