Skip to main content

A Python library for Arista's CloudVision APIs and Provisioning Action integrations.

Project description

Arista CloudVision Python Library

The Arista CloudVision Python library provides access to Arista's CloudVision APIs for use in Python applications.

Documentation

API Documentation for this library can be found here.

Documentation for CloudVision's Resource APIs can be found here.

Documentation for generic access to CloudVision can be found at CloudVision Connector.

Installation

Install via pip:

pip install --upgrade cloudvision

Or from source:

python setup.py install

Requirements

  • CloudVision Resource APIs: Python 3.7+
  • CloudVision Connector: Python 3.7+
  • Examples: Python 3.7+

Resource APIs

Cloudvision APIs are state based, resource-oriented APIs modeled in Protobuf and accessed over gRPC using a standardized set of RPC verbs.

CloudVision is a powerful platform that processes and stores tremendous amounts of network data. It knows the topology of the network, device configuration, interface activity and other network events. These APIs allow access to fleet-wide data access and control, forming a management-plane with consistent usage.

For example, consider the following script that gets all existing and then watches for new CloudVision events of critical severity and notifies an administrator when raised and notes it on the event:

import time
import google.protobuf.wrappers_pb2
import grpc
from arista.event.v1 import models, services

# setup credentials as channelCredentials

with grpc.secure_channel("www.arista.io:443", channelCredentials) as channel:
    event_stub = services.EventServiceStub(channel)
    event_annotation_stub = services.EventAnnotationConfigServiceStub(channel)

    event_watch_request = services.EventStreamRequest(
        partial_eq_filter=[models.Event(severity=models.EVENT_SEVERITY_CRITICAL)],
    )
    for resp in event_stub.Subscribe(event_watch_request):
        print(f"Critical event {resp.title.value} raised at {resp.key.timestamp}")
        # send alert here via email, webhook, or incident reporting tool

        # then make a note on the event indicating an alert has been sent
        now_ms = int(time.time() * 1000)
        notes_to_set = {
            now_ms: models.EventNoteConfig(
                note=google.protobuf.wrappers_pb2.StringValue(
                    value="Administrator alerted",
                ),
            ),
        }
        annotation_config = models.EventAnnotationConfig(
            key=resp.key,
            notes=models.EventNotesConfig(
                notes=notes_to_set,
            ),
        )
        event_note_update = services.EventAnnotationConfigSetRequest(value=annotation_config)
        event_annotation_stub.Set(event_note_update)

Async support

Starting from version 1.26.1+ it is possible to use alternative GRPC client based on grpclib,that supports pure-python async stubs. This stubs could be found in cloudvision.api.arista module. More specific information and specifications are provided in the API documentation While two types of stubs are supported, it is recommended to use ones from cloudvision.api.arista, as they use more idiomatic structure, naming conventions and leverage standard python library to describe data model.

Example below shows how to retrieve a list of devices:

import asyncio
from cloudvision.api.client import AsyncCVClient
from cloudvision.api.arista.inventory.v1 import DeviceServiceStub, DeviceStreamRequest

async def get_devices():
    client = AsyncCVClient.from_token('<your service account token>', 'your-cvp.io')

    # get channel
    with client as channel:

        # pass it to the stub
        service = DeviceServiceStub(channel)

        # execute one of stub's methods
        async for item in service.get_all(DeviceStreamRequest()):
            print(item)

asyncio.run(get_devices())

CloudVision Connector

CloudVision Connector is a Python implementation of a GRPC client for CloudVision. It takes care of getting and publishing data and datasets, and also provides utilities for data representation.

Getting started

This is a small example advertising a few of the GRPC client capabilities. This example prints info from all devices streaming into CloudVision.

targetDataset = "analytics"
path = ["DatasetInfo", "Devices"]
# No filtering done on keys, accept all
keys = []
ProtoBufQuery = CreateQuery([(path, keys)], targetDataset)
with GRPCClient("my-cv-host:9900") as client:
     for notifBatch in client.Get([query]):
         for notif in notifBatch["notifications"]:
             # Get timestamp for all update here with notif.Timestamp
             PrettyPrint(notif["updates"])

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cloudvision-1.29.0.tar.gz (808.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cloudvision-1.29.0-py3-none-any.whl (916.9 kB view details)

Uploaded Python 3

File details

Details for the file cloudvision-1.29.0.tar.gz.

File metadata

  • Download URL: cloudvision-1.29.0.tar.gz
  • Upload date:
  • Size: 808.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for cloudvision-1.29.0.tar.gz
Algorithm Hash digest
SHA256 af6b3bc08b833cffb0bd7d3d6019c2faa8ec4c72ea887e9acc8bd2fb68e7cb88
MD5 194dcf00e3a17dd3a1b70556bfd7179e
BLAKE2b-256 3dcc89bf55beaaaaf6d986a015fc4e52c1568e11f5617694ae6a0ce7a3391a3a

See more details on using hashes here.

File details

Details for the file cloudvision-1.29.0-py3-none-any.whl.

File metadata

  • Download URL: cloudvision-1.29.0-py3-none-any.whl
  • Upload date:
  • Size: 916.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for cloudvision-1.29.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f5e1a9f21f5f21cfc950ff1d8aacd0131d0422aaeb8a37d2fc1d403dccef4cf8
MD5 cf99fb8cd818aa06cd48106475b87244
BLAKE2b-256 11d9a72dc470b8dfc2462da88cef9dc16e111032e5cb44eee8722db2897436b7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page