Skip to content

Commit 7c3a8f5

Browse files
authored
Merge pull request #102 from clhainf5/v_0_8_1_release
update for v0.8.1
2 parents bd255b0 + d13ec89 commit 7c3a8f5

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

COLLECTOR_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.8.0
1+
v0.8.1

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,14 @@ f5_policy_ip_intelligence_feed_list_count{}
270270
f5_policy_ip_intelligence_info{}
271271
f5_virtual_server_profile_client_ssl_secure_handshakes_total{}
272272
f5_policy_ip_intelligence_generation{}
273+
f5_pool_member_bytes_in_total{}
274+
f5_pool_member_bytes_out_total{}
275+
f5_pool_member_connection_count{}
276+
f5_pool_member_connections_total{}
277+
f5_pool_member_requests_total{}
278+
f5_pool_member_session_count{}
279+
f5_pool_member_packets_in_total{}
280+
f5_pool_member_packets_out_total{}
273281
f5_plane_cpu_utilization_5s{}
274282
```
275283

@@ -340,8 +348,12 @@ special instructions / breaking changes.
340348
```shell
341349
git stash
342350
git pull origin main
343-
git checkout tags/RELEASE_VERSION #(e.g. tags/v0.8.0)
351+
git checkout tags/RELEASE_VERSION #(e.g. tags/v0.8.1)
344352
git stash pop
353+
# <merge any conflicts with your local changes>
354+
# <re-run config scripts>
355+
docker compose down
356+
docker compose up
345357
```
346358

347359
## Support

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
- 7lc_network
2828

2929
otel-collector:
30-
image: ghcr.io/f5devcentral/application-study-tool/otel_custom_collector:v0.8.0
30+
image: ghcr.io/f5devcentral/application-study-tool/otel_custom_collector:v0.8.1
3131
restart: unless-stopped
3232
volumes:
3333
- ./services/otel_collector:/etc/otel-collector-config

pages/components/otel_collector/receiver_readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The following settings are optional:
3131
- `collection_interval` (default = `10s`): This receiver collects metrics on an interval. Valid time units are `ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`.
3232
- `tls` (defaults defined [here](https://github.com/open-telemetry/opentelemetry-collector/blob/main/config/configtls/README.md)): TLS control. By default insecure settings are rejected and certificate verification is on.
3333
- `enable_http_client_metrics` (default = `false`): Enable collection of metrics for http client requests to the device.
34-
- `page_item_limit` (default = 100): The number of objects per page for paginated api requests
34+
- `page_item_limit` (default = 10000): The number of objects per page for paginated api requests (because bigip doesn't handle pagination as you might expect, its recommended not to adjust this lower)
3535
- `concurrent_workers` (default = 2): The number of concurrent API requests per receiver.
3636
- `data_types` (default: all enabled): This map allows you to enable / disable collection and sending of data by type. The list of available data types can be found in `./config.go`, in the DataTypesConfig struct definition.
3737

0 commit comments

Comments
 (0)