- Start
- What's New
- Getting Started
- User Guide
- About
- Basic Operations
- Network Element Drivers and Adding Devices
- Managing Network Services
- NSO CLI
- The NSO Device Manager
- SSH Key Management
- Alarm Manager
- Plug-and-play Scripting
- Compliance reporting
- NSO Packages
- Life-cycle Operations - Manipulating Existing Services and Devices
- Web User Interface
- Network Simulator
- Administration Guide
- Northbound APIs
- Development Guide
- Preface
- Development Environment and Resources
- The Configuration Database and YANG
- Basic Automation with Python
- Developing a Simple Service
- Applications in NSO
- Implementing Services
- Templates
- Services Deep Dive
- The NSO Java VM
- The NSO Python VM
- Embedded Erlang applications
- The YANG Data Modeling Language
- Using CDB
- Java API Overview
- Python API Overview
- NSO Packages
- Package Development
- Service Development Using Java
- NED Development
- NED Upgrades and Migration
- Service Handling of Ambiguous Device Models
- Scaling and Performance Optimization
- NSO Concurrency Model
- Developing Alarm Applications
- SNMP Notification Receiver
- The web server
- Kicker
- Scheduler
- Progress Trace
- Nano Services for Staged Provisioning
- Encryption Keys
- External Logging
- NSO Developer Studio
- Web UI
- Layered Service Architecture
- Manual Pages
- NSO Documentation Home
- NSO SDK API Reference
- NSO Change Log Explorer
- NSO NED Change Log Explorer
- NSO NED Capabilities Explorer
- NSO on DevNet
- Get Support
OUTDATED
OUTDATED
This documentation corresponds to an older version of the product, is no longer updated, and may contain outdated information.
Please access the latest versions from https://cisco-tailf.gitbook.io/nso-docs and update your bookmarks. OK
Progress tracing in NSO provides developers with useful information for debugging, diagnostics and profiling. This information can be used both during development cycles and after release of the software. The system overhead for progress tracing are usually negligible.
When a transaction or action is applied, NSO emits progress events. These events can be displayed and recorded in a number of different ways. The easiest way is to pipe an action to details in the CLI.
admin@ncs%commit | details
Possible completions: debug verbose very-verbose admin@ncs%commit | details
As seen by the details output, all events are recorded with a timestamp and in some cases with the duration. All phases of the transaction, service and device communication are printed.
applying transaction for running datastore usid=41 tid=1761 trace-id=d7f06482-41ad-4151-938d-7a8bc7b3ce33 entering validate phase 2021-05-25T17:28:12.267 taking transaction lock... ok (0.000 s) 2021-05-25T17:28:12.267 holding transaction lock... 2021-05-25T17:28:12.268 creating rollback file... ok (0.004 s) 2021-05-25T17:28:12.272 run transforms and transaction hooks... 2021-05-25T17:28:12.273 run pre-transform validation... ok (0.000 s) 2021-05-25T17:28:12.275 service-manager: service /ordserv[name='o2']: run service... ok (0.035 s) 2021-05-25T17:28:12.311 run transforms and transaction hooks: ok (0.038 s) 2021-05-25T17:28:12.311 mark inactive... ok (0.000 s) 2021-05-25T17:28:12.311 pre validate... ok (0.000 s) 2021-05-25T17:28:12.311 run validation over the changeset... ok (0.000 s) 2021-05-25T17:28:12.312 run dependency-triggered validation... ok (0.000 s) 2021-05-25T17:28:12.312 check configuration policies... ok (0.000 s) leaving validate phase (0.045 s) entering write-start phase 2021-05-25T17:28:12.312 cdb: write-start 2021-05-25T17:28:12.313 check data kickers... ok (0.000 s) leaving write-start phase (0.001 s) entering prepare phase 2021-05-25T17:28:12.314 cdb: prepare 2021-05-25T17:28:12.314 device-manager: prepare leaving prepare phase (0.003 s) entering commit phase 2021-05-25T17:28:12.317 cdb: commit 2021-05-25T17:28:12.318 service-manager: commit 2021-05-25T17:28:12.318 device-manager: commit 2021-05-25T17:28:12.320 holding transaction lock: ok (0.033 s) leaving commit phase (0.002 s) applying transaction for running datastore usid=41 tid=1761 trace-id=d7f06482-41ad-4151-938d-7a8bc7b3ce33 (0.053 s)
Some actions (usually those involving device communication) also produces progress data.
admin@ncs% request devices device ce0 sync-from dry-run | details very-verbose
running action /devices/device\[name='ce0'\]/sync-from usid=41 tid=1800 trace-id=fff4d4b0-5688-42f9-b5f7-53b7c3f70d35
2021-05-25T17:31:31.222 device ce0: sync-from...
2021-05-25T17:31:31.222 device ce0: taking device lock... ok (0.000 s)
2021-05-25T17:28:12.267 device ce0: holding device lock...
2021-05-25T17:31:31.227 device ce0: connect... ok (0.013 s)
2021-05-25T17:31:31.240 device ce0: show... ok (0.001 s)
2021-05-25T17:31:31.242 device ce0: get-trans-id... ok (0.000 s)
2021-05-25T17:31:31.242 device ce0: close... ok (0.000 s)
...
2021-05-25T17:28:12.320 device ce0: holding device lock: ok (0.033 s)
2021-05-25T17:31:31.249 device ce0: sync-from: ok (0.026 s)
running action /devices/device\[name='ce0'\]/sync-from usid=41 tid=1800 trace-id=fff4d4b0-5688-42f9-b5f7-53b7c3f70d35 (0.053 s)
The pipe details in the CLI is useful during development cycles of for example a service, but not as useful when tracing calls from other northbound interfaces or events in a released running system. Then it's better to configure a progress trace to be outputted to a file or operational data which can be retrieved through a northbound interface.
The top level container progress
is by default
invisible due to a hidden attribute. In order to make
progress
visible in the CLI, two steps are
required. First the following XML snippet must be added to
ncs.conf
:
<hide-group> <name>debug</name> </hide-group>
Now the unhide command may be used in the CLI session:
admin@ncs% unhide debug
Progress data can be outputted to a given file. This is useful when the data is to be analyzed in some third party software like a spreadsheet application.
admin@ncs% set progress trace test destination file event.csv format csv
The file can be formatted as a comma-separated values file defined by RFC 4180 or in a pretty printed log file with each event on a single line.
The location of the file is the directory of
/ncs-config/logs/progress-trace/dir
in
ncs.conf
.
When the data is to be retrieved through a northbound interface it is more useful to output the progress events as operational data.
admin@ncs% set progress trace test destination oper-data
This will log non-persistent operational data to the
/progress:progress/trace/event
list.
As this list might grow rapidly there is a maximum size of
it (defaults to 1000 entries). When the maximum size is
reached, the oldest list entry is purged.
admin@ncs% set progress trace test max-size 2000
Using the /progress:progress/trace/purge
action
the event list can be purged.
admin# request progress trace test purge
Progress events can be subscribed to as Notifications events. See the section called “NOTIF API” for further details.
The verbosity
parameter is used to
control the level of output. The following levels are
available:
-
normal - Informational messages that highlight the progress of the system at a coarse-grained level. Used mainly to give a high level overview. This is the default and the lowest verbosity level.
-
verbose - Detailed informational messages from the system. The various service and device phases and their duration will be traced. This is useful to get an overview over where time is spent in the system.
-
very-verbose - Very detailed informational messages from the system and its internal operations.
-
debug - The highest verbosity level. Fine-grained informational messages usable for debugging the system and its internal operations. Internal system transactions as well as data kicker evaluation and CDB subscribers will traced. Setting this level could result in a large number of events being generated.
Additional debug tracing can be turned on for various parts. These are consciously left out of the normal debug level due to the high amount of output and should only be turned on during development.
By default all transaction and action events with the given verbosity level will be logged. To get a more selective choice of events, filters can be used.
admin@ncs% show progress trace filter
Possible completions:
all-devices - Only log events for devices.
all-services - Only log events for services.
context - Only log events for the specified context.
device - Only log events for the specified device(s).
device-group - Only log events for devices in this group.
local-user - Only log events for the specified local user.
service-type - Only log events for the specified service type.
The context filter can be used to only log events that originate through a specific northbound interface. The context is either one of netconf, cli, webui, snmp, rest, system or it can be any other context string defined through the use of MAAPI.
admin@ncs% set progress trace test filter context netconf
API methods to report progress events exists for Python, and Java, Erlang and C.
class ServiceCallbacks(Service): @Service.create def cb_create(self, tctx, root, service, proplist): maapi = ncs.maagic.get_maapi(root) trans = maapi.attach(tctx) with trans.start_progress_span("service create()", path=service._path): ipv4_addr = None with trans.start_progress_span("allocate IP address") as sp11: self.log.info('alloc trace-id: ' + sp11.trace_id + \ ' span-id: ' + sp11.span_id) ipv4_addr = alloc_ipv4_addr('192.168.0.0', 24) trans.progress_info('got IP address ' + ipv4_addr) with trans.start_progress_span("apply template", attrs={'ipv4_addr':ipv4_addr}) as sp12: self.log.info('templ trace-id: ' + sp12.trace_id + \ ' span-id: ' + sp12.span_id) vars = ncs.template.Variables() vars.add('IPV4_ADDRESS', ipv4_addr) template = ncs.template.Template(service) template.apply('ipv4-addr-template', vars)
Further details can be found in the NSO Python API reference
under ncs.maapi.start_progress_span
and
ncs.maapi.progress_info
.
@ServiceCallback(servicePoint="...", callType=ServiceCBType.CREATE) public Properties create(ServiceContext context, NavuNode service, NavuNode ncsRoot, Properties opaque) throws DpCallbackException { try { Maapi maapi = service.context().getMaapi(); int tid = service.context().getMaapiHandle(); ProgressTrace progress = new ProgressTrace(maapi, tid, service.getConfPath()); Span sp1 = progress.startSpan("service create()"); Span sp11 = progress.startSpan("allocate IP address"); LOGGER.info("alloc trace-id: " + sp11.getTraceId() + " span-id: " + sp11.getSpanId()); String ipv4Addr = allocIpv4Addr("192.168.0.0", 24); progress.event("got IP address " + ipv4Addr); progress.endSpan(sp11); Attributes attrs = new Attributes(); attrs.set("ipv4_addr", ipv4Addr); Span sp12 = progress.startSpan(Maapi.Verbosity.NORMAL, "apply template", attrs, null); LOGGER.info("templ trace-id: " + sp12.getTraceId() + " span-id: " + sp12.getSpanId()); TemplateVariables ipVar = new TemplateVariables(); ipVar.putQuoted("IPV4_ADDRESS", ipv4Addr); Template ipTemplate = new Template(context, "ipv4-addr-template"); ipTemplate.apply(service, ipVar); progress.endSpan(sp12); progress.endSpan(sp1);
Further details can be found in the NSO Java API reference
under com.tailf.progress.ProgressTrace
and
com.tailf.progress.Span
.