All Projects → sapcc → vrops-exporter

sapcc / vrops-exporter

Licence: Apache-2.0 license
Prometheus exporter running python to get metrics out of VMware vRealize Operations

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to vrops-exporter

enviroplus exporter
Prometheus exporter for enviroplus module by Pimoroni
Stars: ✭ 70 (+337.5%)
Mutual labels:  prometheus-exporter
prometheus-sentry-exporter
Exports sentry project metrics for prometheus.
Stars: ✭ 32 (+100%)
Mutual labels:  prometheus-exporter
hue exporter
A Prometheus exporter for Philips Hue (written in Go)
Stars: ✭ 109 (+581.25%)
Mutual labels:  prometheus-exporter
app-stores-prometheus-exporter
Prometheus exporter that exports metrics (score, ratings, reviews, app version, etc.) from the Apple App Store and Google Play Store
Stars: ✭ 80 (+400%)
Mutual labels:  prometheus-exporter
tplink-plug-exporter
TP-Link Smart Plug Prometheus Exporter
Stars: ✭ 80 (+400%)
Mutual labels:  prometheus-exporter
bigip exporter
Prometheus exporter for BIG-IP metrics
Stars: ✭ 83 (+418.75%)
Mutual labels:  prometheus-exporter
ansitheus
Ansible playbook - Containerize, configure and deploy Prometheus ecosystem
Stars: ✭ 19 (+18.75%)
Mutual labels:  prometheus-exporter
azure-devops-exporter
Prometheus exporter for Azure DevOps (VSTS) including agent pools, builds, releases, deployments, pullrequests and repo stats
Stars: ✭ 102 (+537.5%)
Mutual labels:  prometheus-exporter
bash-exporter
Simple & minimalistic Prometheus exporter for bash scripts, written in Go
Stars: ✭ 54 (+237.5%)
Mutual labels:  prometheus-exporter
cryptoprom
CryptoProm is a Prometheus metrics exporter for Cryptocurrency market prices.
Stars: ✭ 19 (+18.75%)
Mutual labels:  prometheus-exporter
elcep
Elastic Log Counter Exporter for Prometheus
Stars: ✭ 14 (-12.5%)
Mutual labels:  prometheus-exporter
cassandra-exporter
Java agent for exporting Cassandra metrics to Prometheus
Stars: ✭ 59 (+268.75%)
Mutual labels:  prometheus-exporter
prometheus-gmail-exporter
Checks gmail labels for unread messages and exposes the counts via prometheus.
Stars: ✭ 28 (+75%)
Mutual labels:  prometheus-exporter
extatus
App to report metrics to Prometheus from Elixir GenServers
Stars: ✭ 18 (+12.5%)
Mutual labels:  prometheus-exporter
prometheus-kafka-consumer-group-exporter
Prometheus Kafka Consumer Group Exporter
Stars: ✭ 72 (+350%)
Mutual labels:  prometheus-exporter
lustre exporter
Prometheus exporter for use with the Lustre parallel filesystem
Stars: ✭ 25 (+56.25%)
Mutual labels:  prometheus-exporter
unpoller
Application: Collect ALL UniFi Controller, Site, Device & Client Data - Export to InfluxDB or Prometheus
Stars: ✭ 1,613 (+9981.25%)
Mutual labels:  prometheus-exporter
pve exporter
Prometheus exporter for Proxmox VE.
Stars: ✭ 31 (+93.75%)
Mutual labels:  prometheus-exporter
vmware exporter
VMWare VCenter Exporter for Prometheus
Stars: ✭ 46 (+187.5%)
Mutual labels:  prometheus-exporter
aerospike exporter
A prometheus exporter for collecting aerospike metrics
Stars: ✭ 13 (-18.75%)
Mutual labels:  prometheus-exporter

Python application Coverage Status

vrops-exporter

Prometheus exporter for VMware vRealize Operations Manager

Tested and compatible with vROps 6.5 up to vROps v8.6.2

Table of Contents

Design

Supported adapters and resourcekinds

Running the software

Running in Kubernetes

Test

Design

The exporter is divided in two main components, inventory and exporter. The inventory is providing the resource-uuids (unique unit identifier) from vROps via a REST interface to the exporter

inventory

The inventory collects all supported resourcekinds in their hierarchical relation, and makes them available at an internal API. The resourcekinds are updated by a continuous cycle that can be configured with --sleep. The inventory preserves data through iterations. The last two iterations for these cycles are always provided via the endpoints and in order to know which iteration to fetch, latest iteration needs to be queried first.

To have more control over the resources to be collected, they can be filtered by resourcestatus, resourcehealth and resourcestate in inventory-config.

Additionally, multiple vROps can be processed concurrently. This is implemented with threads. NOTE: currently only once vCenter per vROps is supported.

inventory endpoints
GET

/vrops_list                                       # list of one or multiple vrops
/<target>/<resourcekind>/<int:iteration>          # path for each resourcekind
/alertdefinitions/                                # vrops pre-defined alertdefinitions
/iteration                                        # current inventory iteration
/amount_resources                                 # amount of resources for each resourcekind
/collection_times                                 # measured time for a inventory run per vrops
/api_response_codes                               # HTTP response codes per resourcekind GET request
/target_tokens                                    # dict with vrops: auth token

exporter

The second component are the collectors that exist for each resourcekind as well as for metrics, properties and alerts. Each collector performs only one task - one resourcekind and one type from the three different values. First, the resourcekinds in question are queried at the inventory's internal API. In the second step, the values, properties or alarms are queried. From these, the Prometheus metrics are generated. To complete the picture, the metrics are enriched with the labels from the resourcekind relationships created in the inventory.

To avoid multiple implementations of functionality, the collectors follow an inheritance structure.

Supported adapters and resourcekinds

This sections shows how vROps internal resourcekind relationsships are used in the exporter as a hierarchical tree.

VMware vCenter Server

Resourcekind relationship:

VMwareAdapter Instance:
    Datacenter:
        VmwareDistributedVirtualSwitch
        Datastore
        ClusterComputeResource:
            HostSystem:
                Virtualmachine

VMware NSX-T Adapter

Resourcekind relationship:

NSXTAdapter:
    ManagementCluster:
        ManagementNode:
            ManagementService
        TransportZone:
            TransportNode
        LogicalSwitch

SDDC (Software-Defined Data Center) Health Adapter

SDDC resourcekinds can be defined in inventory-config:

resourcekinds:
    sddc_resourcekinds:
      - "NSXT Server"
      - "VCENTER"
      - "NSXVPostgresService"
      - "SSHService"
      - "NSXReplicatorService"
      - "NSXRabbitmqService"
      - "NSXManagerService"
      - "NSXControllerService"
      - "SDDCHealth Instance"
      - "vCenterBackupJob"

VCOPS (vCenter Operations) Adapter

VCOPS resourcekinds can be defined in inventory-config:

resourcekinds:
    vcops_resourcekinds:
      - "vC-Ops-Analytics"
      - "vC-Ops-CaSA"
      - "vC-Ops-Cluster"
      - "vC-Ops-Collector"
      - "vC-Ops-Node"
      - "vC-Ops-Suite-API"
      - "vC-Ops-Watchdog"

Running the software

inventory

  • --user: specifiy user to log in
  • --password: specify password to log in
  • --port: specify inventory port
  • --atlas: path to atlas config file [OPTIONAL]
  • --config: path to inventory config to set query filters (and resourcekinds - SDDC & VCOPS only)
  • --v: logging all level except debug
  • --vv: logging all level including debug
  • --loopback: use 127.0.0.1 address instead of listen to 0.0.0.0 (for test purpose)
  • --sleep: how often the resources are updated, default: 1800s
  • --timeout: specifies timeout for fetching data from vROps, default: 600s

There are two ways to configure your target vROps instances to be queried:

  • config file: in the inventory-config as vrops_targets. This is the default, add your vROps instance here.

  • web service: as an http endpoint providing an Atlas compatible format. To use this, either specify --atlas as a cli param or use a ATLAS environement variable pointing to your web service url.

    The inventory queries the atlas service discovery endpoint to know all the DNS names of the vrops targets. It refers to our netbox extractor, which is in the end providing netbox data as a service endpoint in Kubernetes. The format provided via this endpoint looks like this, you can also provide your own tooling:

    [
      {
          "labels": {
              "job": "vrops",
              "server_name": "VROPS_DNS_ADDRESS"
          }
      },
      {
          "labels": {
              "job": "another_vrops",
              "server_name": "ANOTHER_VROPS_DNS_ADDRESS"
          }
      }
    ]

Remark for local testing: In case the WSGI server can't be connected you might want to try --loopback to hook up the loopback interface (127.0.0.1). This is sometimes needed for local debugging.

exporter

The exporter can be started with a specific target and/or a specific collector and/or specific rubric (rubrics defined in the collector config). This is important to provide smaller and also faster exporters in the landscape.

  • --port: specify exporter port
  • --inventory: inventory service address
  • --config: path to config to set default collectors, statkeys and properties for collectors
  • --target: define target vrops
  • --collector: enable collector (use multiple times)
  • --rubric: metric rubric in collector config
  • --v: logging all level except debug
  • --vv: logging all level including debug

An example collector-config. Add the desired statkeys and properties that your collectors should collect in a dedicated category. This is where pairs of a statkey and a metric_suffix are described. The statkey follows VMware notation and the metric_suffix follows best practices as it should appear in prometheus.

Metrics: VMWARE Documentation | Metrics for vCenter Server Components

Properties: VMWARE Documentation | Properties for vCenter Server Components

Prometheus: Prometheus | Metric and label naming

In addition, vrops-exporter is able to fetch active alerts from supported resource types and wrap them in an info metric containing all symptoms and recommendations as labels.

vrops_hostsystem_alert_info{
    alert_impact="HEALTH", 
    alert_level="CRITICAL", 
    alert_name="The host has lost connectivity to a dvPort", 
    datacenter="datacenter1", 
    description="One or more portgroups in the host lost connectivity to the dvPort. As a result, the services associated with the affected dvPorts are         
        disconnected from the associated physical networks. All physical connections to the dvPort from the associated switch will become unavailable.", 
    hostsystem="node001-prod1", 
    recommendation_1="Replace the physical adapter or reset the physical switch. The alert will be canceled when connectivity is restored to the dvPort.",      
    status="ACTIVE", 
    symptom_1_data="{'condition': {'faultEvents': ['esx.problem.net.dvport.connectivity.lost'], 'faultKey': 'fault|dvp|conn', 'type': 'CONDITION_FAULT'}, 
        'severity': 'CRITICAL'}", 
    symptom_1_name="Lost network connectivity to DVPorts", 
    vccluster="prod-cluster1", 
    vcenter="vcenter1"
    }
1. Build

To build the container simply run make and get the locally created docker container.

2. CLI

Either specify the vars via environment or cli params. Because the inventory and the exporter are running seperately, you need to enter the Docker container at least twice.

Start the container:

   docker run -it keppel.eu-de-1.cloud.sap/ccloud/vrops_exporter /bin/sh

This will start the inventory container and directly enter the shell. Note, you need to define your vROps target beforehand tests/inventory_config.yaml.

   ./inventory.py --user foobaruser --password "foobarpw" --port 80 -m tests/inventory_config.yaml --vv

Now you need to enter the container a second time:

   docker exec -it <container_name> /bin/sh

Now run the exporter:

   ./exporter.py --port 9000 --inventory localhost --config tests/collector_config.yaml --target 'vrops-vcenter-test.company.com' --vv

You can also enter the container a third time to fetch the prometheus metrics from localhost (i.e. with wget)

3. Enviroment variables
    USER
    PASSWORD
    PORT
    INVENTORY
    LOOPBACK

Running in Kubernetes

For running this in kubernetes (like we do), you might want to have a look at our helm chart

Test

Test module is called using ENV variables. Specifying these on the fly would look like this:

Main test:

LOOPBACK=0 DEBUG=0 INVENTORY=127.0.0.1:8000 USER=FOO PASSWORD=Bar CONFIG=tests/collector_config.yaml TARGET=vrops-vcenter-test.company.com python3 tests/TestCollectors.py

To run all tests you got to loop over it.

for i in $(ls tests/Test*)
do
  LOOPBACK=1 INVENTORY="127.0.0.1:8000" DEBUG=0 USER=FOO PASSWORD=Bar python3 $i
done

Please note that USER and PASSWORD are currently doing nothing at all, they are only passed on because the test checks whether these are present.

The test generates dummy return values for the queries to vROps and checks the functionality of the collectors. It compares whether the metrics as a result of the collector match the expected metrics in metrics.yaml.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].