Skip to content

Commit 8d62155

Browse files
authored
Merge pull request #135 from f5devcentral/development
Publish AST v0.9.0
2 parents a1a24a7 + c94aaf8 commit 8d62155

File tree

21 files changed

+69
-25
lines changed

21 files changed

+69
-25
lines changed

COLLECTOR_VERSION

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

README.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,34 @@ bigip_receiver_defaults:
8989
# BIGIP_PASSWORD_1
9090
password: "${env:BIGIP_PASSWORD_1}"
9191
# The data_types that should be enabled or disabled.
92-
# DNS and GTM are disabled by default and users can enable those modules
92+
# These are disabled by default and users can enable those modules
9393
# on all devices by setting the below to true.
9494
# A full list of data_types is at https://f5devcentral.github.io/application-study-tool/components/otel_collector/receiver_readme.html.
9595
data_types:
96+
f5.apm:
97+
enabled: false
98+
f5.cgnat:
99+
enabled: false
96100
f5.dns:
97101
enabled: false
102+
f5.dos:
103+
enabled: false
104+
f5.firewall:
105+
enabled: false
98106
f5.gtm:
99107
enabled: false
108+
f5.policy.api_protection:
109+
enabled: false
110+
f5.policy.asm:
111+
enabled: false
112+
f5.policy.firewall:
113+
enabled: false
114+
f5.policy.ip_intelligence:
115+
enabled: false
116+
f5.policy.nat:
117+
enabled: false
118+
f5.profile.dos:
119+
enabled: false
100120
# The TLS settings to use. Either a CA file must be specified or
101121
# insecure_skip_verify set to true (not recommended).
102122
tls:
@@ -341,7 +361,7 @@ special instructions / breaking changes.
341361
git stash
342362
git fetch --tags
343363
git pull origin main
344-
git checkout tags/RELEASE_VERSION #(e.g. tags/v0.8.1)
364+
git checkout tags/RELEASE_VERSION #(e.g. tags/v0.9.0)
345365
git stash pop
346366
# <merge any conflicts with your local changes>
347367
# <re-run config scripts>

config/ast_defaults.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,18 @@ bigip_receiver_defaults:
3232
enabled: false
3333
f5.gtm:
3434
enabled: false
35+
f5.policy.api_protection:
36+
enabled: false
37+
f5.policy.asm:
38+
enabled: false
39+
f5.policy.firewall:
40+
enabled: false
41+
f5.policy.ip_intelligence:
42+
enabled: false
43+
f5.policy.nat:
44+
enabled: false
45+
f5.profile.dos:
46+
enabled: false
3547
# The TLS settings to use. Either a CA file must be specified or insecure_skip_verify
3648
# set to true (not recommended)
3749
tls:

config/bigip_receivers.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@ bigip/1:
2727
# enabled: false
2828
# f5.gtm:
2929
# enabled: false
30+
# f5.policy.api_protection:
31+
# enabled: false
32+
# f5.policy.asm:
33+
# enabled: false
34+
# f5.policy.firewall:
35+
# enabled: false
36+
# f5.policy.ip_intelligence:
37+
# enabled: false
38+
# f5.policy.nat:
39+
# enabled: false
40+
# f5.profile.dos:
41+
# enabled: false
3042
# tls:
3143
# insecure_skip_verify: true
3244
# ca_file:

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.1
30+
image: ghcr.io/f5devcentral/application-study-tool/otel_custom_collector:v0.9.0
3131
restart: unless-stopped
3232
volumes:
3333
- ./services/otel_collector:/etc/otel-collector-config

pages/components/otel_collector/receiver_readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,10 @@ f5.network
6565
f5.node
6666
f5.plane
6767
f5.policy.eviction
68-
f5.policy.firewall
69-
f5.policy.ip_intelligence
70-
f5.policy.api_protection
7168
f5.policy.bandwidth_control
72-
f5.policy.nat
7369
f5.pool
7470
f5.profile.client_ssl
7571
f5.profile.server_ssl
76-
f5.profile.dos
7772
f5.profile.fasthttp
7873
f5.profile.fastl4
7974
f5.profile.http
@@ -88,7 +83,12 @@ f5.rule
8883
f5.ssl_certificate
8984
f5.system
9085
f5.virtual_server
91-
f5.policy.asm
86+
f5.policy.api_protection ### DEFAULT DISABLE
87+
f5.policy.asm ### DEFAULT DISABLE
88+
f5.policy.firewall ### DEFAULT DISABLE
89+
f5.policy.ip_intelligence ### DEFAULT DISABLE
90+
f5.policy.nat ### DEFAULT DISABLE
91+
f5.profile.dos ### DEFAULT DISABLE
9292
f5.apm ### DEFAULT DISABLE
9393
f5.cgnat ### DEFAULT DISABLE
9494
f5.dns ### DEFAULT DISABLE

pages/config/config_helper/config_datafabric.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: page
33
title: Configure Export To F5 Datafabric
44
parent: Configuration Helper (Recommended)
5-
grandparent: Configuration
5+
grandparent: Configuration Management
66
nav_order: 3
77
---
88

pages/config/config_helper/config_defaults.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: page
33
title: Default Configuration
44
parent: Configuration Helper (Recommended)
5-
grandparent: Configuration
5+
grandparent: Configuration Management
66
nav_order: 1
77
---
88

pages/config/config_helper/config_dns_gtm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: page
33
title: Configure DNS & GTM (Optional)
44
parent: Configuration Helper (Recommended)
5-
grandparent: Configuration
5+
grandparent: Configuration Management
66
nav_order: 6
77
---
88

pages/config/config_helper/config_helper.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: page
33
title: Configuration Helper (Recommended)
4-
parent: Configuration
4+
parent: Configuration Management
55
nav_order: 3
66
has_children: true
77
permalink: /config/config_helper

0 commit comments

Comments
 (0)