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: README.md
+58-18Lines changed: 58 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,15 @@
1
1
# Application Study Tool
2
2
3
-
> 🚨🚨**Notice**🚨🚨
4
-
>
5
-
> Configuration for the Application Study Tool has changed significantly in the v0.6.0 release. To
6
-
update a legacy configuration, see [Config Migration for Pre v0.6.0 Deployments](https://f5devcentral.github.io/application-study-tool/config/config_migration.html).
7
-
>
8
-
> Before you start, make sure to backup the /config/big-ips.json file!
9
-
10
-
11
3
## Overview
12
4
13
-
> See the [AST Docsite](https://f5devcentral.github.io/application-study-tool/) for detailed
14
-
configuration, troubleshooting info, etc.
5
+
> Prior to installation, please see the [AST Docsite](https://f5devcentral.github.io/application-study-tool/) for detailed
6
+
configuration, troubleshooting (REST changes, HIGH CPU on control plane) info, etc.
7
+
8
+
> See the [F5 Application Study Tool Labs](https://clouddocs.f5.com/training/community/ast/html/) for an educational guided lab experience.
9
+
>
10
+
> For enabling HTTPS within Grafana, see the [Make Grafana Listen on HTTPS guide](https://community.f5.com/kb/technicalarticles/application-study-tool-make-grafana-listen-on-https/341728) for guidance.
11
+
>
12
+
> To review ideas on integrating your secrets with a vault, see the [Integrating your secrets with Hashi vault](https://community.f5.com/kb/TechnicalArticles/f5-app-study-tool-with-passwords-stored-in-vault/341155) for further information.
15
13
16
14
The Application Study Tool is intended to provide enhanced insights into (classic) BIG-IP products, leveraging best in class
17
15
open source telemetry tools. The full installation includes:
Copy file name to clipboardExpand all lines: config/ast_defaults.yaml
+29-5Lines changed: 29 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -8,18 +8,42 @@ bigip_receiver_defaults:
8
8
# The password (not recommended) or a reference to an env variable (recommended, shown)
9
9
# Below tells the collector to look for an environment variable named BIGIP_PASSWORD_1
10
10
password: "${env:BIGIP_PASSWORD_1}"
11
-
# The timeout field can be used to adjust the amount of time the collector will wait for a response
11
+
# The timeout field can be used to adjust the maximum amount of time the collector will wait for a response
12
12
# to BigIP iControl Rest requests. Larger boxes with more complex config may require setting this value
13
-
# higher. Set for individual devices in bigip_receivers.yaml
14
-
timeout: 10s
15
-
# The data_types that should be enabled or disabled. DNS and GTM users can enable those modules
13
+
# higher.
14
+
# This value should be less than or equal to the collection_interval. Any requests that haven't completed
15
+
# before this timer expires (starting at the beginning of the collection interval) will be cancelled.
16
+
# You can set this for individual devices in bigip_receivers.yaml.
17
+
timeout: 60s
18
+
# The data_types that should be enabled or disabled. Default-disabled module users can enable those modules
16
19
# by setting the below to true. These will apply to all devices and may be better specified on the
17
-
# per-reciever settings file below.
20
+
# per-reciever settings file.
21
+
# The full list of available data types is [here](https://f5devcentral.github.io/application-study-tool/components/otel_collector/receiver_readme.html#available-data_types).
18
22
data_types:
23
+
f5.apm:
24
+
enabled: false
25
+
f5.cgnat:
26
+
enabled: false
19
27
f5.dns:
20
28
enabled: false
29
+
f5.dos:
30
+
enabled: false
31
+
f5.firewall:
32
+
enabled: false
21
33
f5.gtm:
22
34
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
23
47
# The TLS settings to use. Either a CA file must be specified or insecure_skip_verify
0 commit comments