Skip to content
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.

Telemetry Tracker for F5 BIG-IQ, NGINX Controller and NGINX Instance Manager. REST API, Push mode, automated e-mail and xls reporting available.

License

Notifications You must be signed in to change notification settings

fabriziofiorucci/F5-Telemetry-Tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

F5 Telemetry Tracker

THIS REPOSITORY HAS BEEN MOVED TO https://github.com/F5Networks/SecondSight This copy is archived here for archival purposes.

Description and features

This tool helps tracking NGINX OSS and NGINX Plus instances managed by NGINX Instance Manager/NGINX Management Suite, and TMOS (BIG-IP, VIPRION, BIG-IP Virtual Edition) instances managed by BIG-IQ

It has been tested against:

  • NGINX Instance Manager/NGINX Management Suite 2.1.0, 2.2.0, 2.3.0
  • BIG-IQ 8.1.0, 8.1.0.2, 8.2.0

Communication to NGINX Instance Manager / BIG-IQ is based on REST API, current features are:

  • REST API and high level reporting - see usage page
  • JSON Telemetry mode
    • POSTs instance statistics to a user-defined HTTP(S) URL (STATS_PUSH_MODE: CUSTOM)
    • Basic authentication support
    • Configurable push interval (in seconds)
  • Grafana visualization mode
    • Pushes instance statistics to pushgateway (STATS_PUSH_MODE: PUSHGATEWAY)
  • Automated e-mail reporting
    • Sends an email containing the report JSON file as an attachment named nginx_report.json for NGINX Instance Manager, and bigip_report.json for BIG-IQ
    • Support for plaintext SMTP, STARTTLS, SMTP over TLS, SMTP authentication, custom SMTP port
    • Configurable push interval (in days)
  • HTTP(S) proxy support
  • Realtime CVE tracking
  • Resource and applications telemetry (currently supported for BIG-IQ)

Reporting and visualization

For additional dashboards see the grafana page

BIG-IQ analytics

NGINX Instance Manager analytics

Architecture

High level

graph TD
BIGIQ([BIG-IQ CM])
NIM([NGINX Instance Manager])

User([User / external app])
P2S[[F5 Telemetry Tracker]]
EMAIL[[e-mail server]]
BROWSER([Browser])
MYF5([External REST endpoint])

TMOSVE([TMOS VE])
BIGIP([BIG-IP])
VIPRION([VIPRION])
NGINXOSS([NGINX OSS])
NGINXPLUS([NGINX Plus])

P2S -- REST API --> BIGIQ 
P2S -- REST API --> NIM

BIGIQ --> TMOSVE
BIGIQ --> BIGIP
BIGIQ --> VIPRION

NIM --> NGINXOSS
NIM --> NGINXPLUS

User -- REST API --> P2S
P2S -- Usage JSON --> User

P2S -- e-mail w/JSON attachment --> EMAIL

BROWSER -- HTTP --> P2S
P2S -- Grafana Dashboard --> BROWSER
P2S -- Telemetry Call Home --> MYF5

JSON telemetry mode

sequenceDiagram
    participant Control Plane
    participant F5 Telemetry Tracker
    participant Third party collector
    participant REST API client
    participant Email server

    loop Telemetry aggregation
      F5 Telemetry Tracker->>Control Plane: REST API polling
      F5 Telemetry Tracker->>F5 Telemetry Tracker: Raw data aggregation
    end
    F5 Telemetry Tracker->>Third party collector: Push JSON reporting data
    REST API client->>F5 Telemetry Tracker: Fetch JSON reporting data
    F5 Telemetry Tracker->>Email server: Email with attached JSON reporting data

Grafana visualization mode

sequenceDiagram
    participant Control Plane
    participant F5 Telemetry Tracker
    participant Pushgateway
    participant Prometheus
    participant Grafana

    loop Telemetry aggregation
      F5 Telemetry Tracker->>Control Plane: REST API polling
      F5 Telemetry Tracker->>F5 Telemetry Tracker: Raw data aggregation
    end
    F5 Telemetry Tracker->>Pushgateway: Push telemetry
    Prometheus->>Pushgateway: Scrape telemetry
    Grafana->>Prometheus: Visualization

Prerequisites

  • Kubernetes/Openshift cluster or Linux host with Docker support
  • Private registry to push the F5 Telemetry Tracker image
  • One of:
    • NGINX Instance Manager 2.1.0, 2.2.0, 2.3.0
    • BIG-IQ 8.1.0, 8.1.0.2, 8.2.0
  • SMTP server if automated email reporting is used
  • NIST NVD REST API Key for full CVE tracking (https://nvd.nist.gov/developers/request-an-api-key)

How to run

On Docker Compose

This is the recommended method to run F5 Telemetry Tracker on a Linux virtual machine. Refer to installation instructions

As a native python application

F5 Telemetry Tracker requires:

Dependencies can be installed using:

$ cd f5tt
$ pip install -r requirements.txt

f5tt/f5tt.sh is a sample script to run F5 Telemetry Tracker from bash

On Kubernetes/Openshift

F5 Telemetry Tracker image is available on Docker Hub as:

fiorucci/f5-telemetry-tracker:latest

File 1.f5tt.yaml references such image by default.

If you need to build and push the docker image to a private registry:

git clone fabriziofiorucci/F5-Telemetry-Tracker
cd F5-Telemetry-Tracker/f5tt

docker build --no-cache -t PRIVATE_REGISTRY:PORT/f5-telemetry-tracker:latest .
docker push PRIVATE_REGISTRY:PORT/f5-telemetry-tracker:latest

Deploy on Kubernetes/Openshift:

cd F5-Telemetry-Tracker/manifests

Edit 1.f5tt.yaml to customize:

  • image name:
    • To be set to your private registry image (only if not using the image available on Docker Hub)
  • environment variables:
Variable Description
F5TT_ADDRESS optional IP address F5 Telemetry Tracker should listen on. Default is 0.0.0.0
F5TT_PORT optional TCP port F5 Telemetry Tracker should listen on. Default is 5000
HTTP_PROXY to be set if HTTP proxy must be used to connect to NGINX Instance Manager or BIG-IQ
HTTPS_PROXY to be set if HTTPS proxy must be used to connect to NGINX Instance Manager or BIG-IQ
NIST_API_KEY API Key for full NIST NVD CVE tracking (get your key at https://nvd.nist.gov/developers/request-an-api-key)
DATAPLANE_TYPE can be NGINX_MANAGEMENT_SYSTEM (NIM 2.x) or BIG_IQ
DATAPLANE_FQDN the FQDN of your NGINX Instance Manager 2.x / BIG-IQ instance
DATAPLANE_USERNAME the username for authentication
DATAPLANE_PASSWORD the password for authentication
NMS_CH_HOST if DATAPLANE_TYPE=NGINX_MANAGEMENT_SYSTEM (NGINX Instance Manager 2.1.0+) - ClickHouse IP address (optional, default: 127.0.0.1)
NMS_CH_PORT if DATAPLANE_TYPE=NGINX_MANAGEMENT_SYSTEM (NGINX Instance Manager 2.1.0+) - ClickHouse TCP port (optional, default: 9000)
NMS_CH_USER if DATAPLANE_TYPE=NGINX_MANAGEMENT_SYSTEM (NGINX Instance Manager 2.1.0+) - ClickHouse username (optional, default: 'default')
NMS_CH_PASS if DATAPLANE_TYPE=NGINX_MANAGEMENT_SYSTEM (NGINX Instance Manager 2.1.0+) - ClickHouse password (optional, default: no password)
NMS_SAMPLE_INTERVAL if DATAPLANE_TYPE=NGINX_MANAGEMENT_SYSTEM instances sample interval in seconds (optional, default: 60)
STATS_PUSH_ENABLE if set to "true" push mode is enabled, disabled if set to "false"
STATS_PUSH_MODE either CUSTOM or PUSHGATEWAY, to push (HTTP POST) JSON to custom URL and to push metrics to pushgateway, respectively
STATS_PUSH_URL the URL where to push statistics
STATS_PUSH_INTERVAL the interval in seconds between two consecutive push
STATS_PUSH_USERNAME (optional) the username for POST Basic Authentication
STATS_PUSH_PASSWORD (optional) the password for POST Basic Authentication
EMAIL_ENABLED if set to "true" automated email reporting is enabled, disabled if set to "false"
EMAIL_INTERVAL the interval in days between two consecutive email reports
EMAIL_SERVER the FQDN of the SMTP server to use
EMAIL_SERVER_PORT the SMTP server port
EMAIL_SERVER_TYPE either "plaintext", "starttls" or "ssl"
EMAIL_AUTH_USER optional, the username for SMTP authentication
EMAIL_AUTH_PASS optional, the password for SMTP authentication
EMAIL_SENDER the sender email address
EMAIL_RECIPIENT the recipient email address
  • Ingress host:
    • By default it is set to f5tt.ff.lan

For standalone operations (ie. REST API + optional push to custom URL):

kubectl apply -f 0.ns.yaml
kubectl apply -f 1.f5tt.yaml

To push statistics to pushgateway also apply:

kubectl apply -f 2.prometheus.yaml
kubectl apply -f 3.grafana.yaml
kubectl apply -f 4.pushgateway.yaml

By default 2.prometheus.yaml is configured for push mode, it must be edited decommenting the relevant section for pull mode

To setup visualization:

  • Grafana shall be configured with a Prometheus datasource using by default http://prometheus.f5tt.ff.lan
  • Import the contrib/grafana/F5-Telemetry-Tracker.json sample dashboard in Grafana

Service names created by default as Ingress resources are:

  • f5tt.ff.lan - REST API and Prometheus scraping endpoint
  • pushgateway.f5tt.ff.lan - Pushgateway web GUI
  • prometheus.f5tt.ff.lan - Prometheus web GUI
  • grafana.f5tt.ff.lan - Grafana visualization web GUI

Additional tools

Additional tools can be found here

F5 Support solutions

See F5 Support solutions:

Usage

See the usage page