Data Bots to Automate Repetitive Data Tasks
Our built-in AI/ML and Analytics Bots make data driven decisions a breeze. 1000+ bots and more
Explore Bot Docs Explore Sample PipelinesAppDynamics
appdynamics
Connect to AppDynamics and retreives Apps, Nodes, Metrics etc.
AWS CloudWatch
aws-cloudwatch
Connect to AWS-Cloudwatch and retrieves data for metrices, logs, filter events etc.
cfxdm
CFX Data Manipulation
Connect to Cfxdm and retrives data to filter, map, groupby etc.
Dynatrace
dynatrace
Retreives inventory, metrics and alerts from Dynatrace
Elasticsearch Index
#elasticsearch:index
Read, Write, Update, Append data for specified Elasticsearch Index
email_reader
Email Reader
Connect to Email and retreives data to read files etc.
email_sender
Email Sender
Connect to Email and retreives data to send files etc.
Send Message to Teams
@msteams:send-message
Send message to Microsoft Teams channel
Upload File to Sharepoint
@sharepoint:upload-file
Uploads dataset as a file to Microsoft SharePoint
Hadoop File System
hdfs
Retreives files and objects from HDFS
IBM Watson NLP
@watson:run-nlp
Connect to Watson and retreives data for categories, concepts, keywords etc.
Jira Defects
jira
Creates and retrieves incidents from Jira
Cisco Meraki
Cisco Meraki
Retreives performance metrics, health and alerts/events from Meraki cloud
MySQL Table
#mysql
Connect to Mysql and retreives data for log data, inventory data etc.
Oracle
#oracle
Retreive key peformance metrics and stats from Oracle DB server
Rubrik
Rubrik
Connect to Rubrik and retreives data to load rubrik event data from file using filename parameter etc.
Slack Upload
@slack:upload-to-channel
Upload dataframe to specified Slack channel
SQL Lite
3sql-lite
Connect to Database and retreives data for different tables etc.
VMware vCenter
vmware-vcenter
Connect to VMware-VCenter and retreives data for hosts, datastores etc.
Generic Webhook
webhook
Connect to Webhook and retreives data to post alerts to OIA etc.
GCP Instances
gcp:instance
Retreives Google Cloud Platform (GCP) Instances and their details
GCP Images
gcp:my-images
Retreives Google Cloud Platform (GCP) images and their details
GCP Volumes
gcp:volumes
Retreives Google Cloud Platform (GCP) volumes and their details
GCP Network
gcp:networks
Retreives Google Cloud Platform (GCP) networks and their details
GCP Sub Networks
gcp:subnetworks
Retreives Google Cloud Platform (GCP) subnetworks and their details
GCP Addresses
gcp:addresses
Retreives Google Cloud Platform (GCP) addresses and their details
GCP Target Pools
gcp:targetPools
Retreives Google Cloud Platform (GCP) target pools and their details
GCP Storage
gcp:storageContainers
Retreives Google Cloud Platform (GCP) storage containers and their details
GCP Projects
gcp:projects
Retreives Google Cloud Platform (GCP) projects and their details
GCP Cloud Billing
gcp:cloudbilling
Retreives Google Cloud Platform (GCP) billing details
New Block
@c:new-block
Start a new block within the pipeline
Simple Loop
@c:simple-loop
Start a simple looping block using 'loop_var' as list of values
Data Loop
@c:data-loop
Start a looping block using 'dataset' name of the saved dataset, and unique values from 'columns'
Count Loop
@c:count-loop
Start a looping block that counts from 'start' to 'end' with 'increment' numerical values
Timed Loop
@c:timed-loop
Start a looping block that waits 'interval' seconds between each iteration
Bookmark Loop
@c:bookmark-loop
Start a looping block that reads a specified bookmark name (bookmark must be saved as part of the loop block)
Save File
@files:savefile
Save the file using filename, filetype and sheet parameters
Append File
@files:appendfile
Save to file using filename, if file exists, append the data. Supports only CSV format.
Dataset to Excel
@files:datasets_to_xlsx
Export specified datasets to an Excel file, each dataset as a different sheet. Returns summary of export.
Metadata
@dm:metadata
Analyze metadata for the input dataset
Filter
*dm:filter
Apply CFXQL filtering on the data
Evaluate
@dm:eval
Map values using evaluate function. Speciy one of more column = 'expression' pairs
Map
@dm:map
Inline mapping of columns 'from' using 'func' and save output to 'to' column
Mask
@dm:mask
Partiallly or completely mask all values in specified columns
Any Non Null
*dm:func any_non_null
Returns any non null value from list of input values
SHA3-256 Checksum
*dm:func checksum
Compute SHA3-256 checksum of input (default md5 algorithm)
Concat
*dm:func concat
Adds prefix and suffix to the specified string
Datetime
*dm:func datetime
Parses input string and converts into a epoch millis format number
Days Between
*dm:func days_between
Number of days between two datetime strings. If only one specified, compare diff between now and that timestamp.
Evaluate
*dm:func evaluate
Given an expression, evaluates the expression string
Fixed Value
*dm:func fixed
Returns a fixed value specified by the 'value' parameter.
Form Decode
*dm:func formDecode
Decodes input string to remove any URL encoded values.
Highest
*dm:func highest
Returns highest non-null value from the list of int values .
Hours Between
*dm:func hours_between
Number of hours between two datetime strings. If only one specified, compare diff between now and that timestamp.
Join
*dm:func join
Joins input list using optional separator.
JSON Decode
*dm:func jsonDecode
Decodes input string into JSON object.
To Lower Case
*dm:func lower
Converts to lowercase text
Lowest
*dm:func lowest
Returns lowest non-null value from the list of int values .
Map Values
*dm:func map_values
Maps input to using the specified name value dict.
Match
*dm:func match
Matches a regular expression and extracts a specific value (if matched).
MD5 Checksum
*dm:func md5
Compute MD5 checksum of input
Minutes Between
*dm:func minutes_between
Number of minutes between two datetime strings. If only one specified, compare diff between now and that timestamp.
Replace
*dm:func replace
Replaces oldvalue with newvalue in the input string
Reverse Endian UUID
*dm:func reverse_uuid_endian
Reverse the input UUID endian (big endian to little endian, vice-versa)
Seconds Between
*dm:func seconds_between
Number of seconds between two datetime strings. If only one specified, compare diff between now and that timestamp.
SHA256 Checksum
*dm:func sha256
Compute SHA256 checksum of input
Slice
*dm:func slice
Slices a string or an array using specified indices.
Split
*dm:func split
Splits input using specified 'sep' separator.
Strip
*dm:func strip
Strips white spaces from both sides of a string
Time Now
*dm:func time_now
Return current time in the specified string format. Default is ISO format.
Time Diff
*dm:func timediff
Time difference between two different time stamps
To Numeric
*dm:func to_numeric
Convert input value into numeric
To Datetime String
*dm:func ts_to_datetimestr
Proceses input number with specified 'unit' (s,ms,ns,excel_date)
To Upper Case
*dm:func upper
Converts to uppercase text
New UUID
*dm:func uuid
Returns new UUID
Item Value in Dict
*dm:func valueRef
Extracts a specific item from input dict object.
Value When Null
*dm:func when_null
If the specified value is null, it uses the value as per 'value' param
Sleep
@dm:sleep
Wait for a specified number of seconds before executing next step. Useful for timed loops.
Sort
@dm:sort
Sort values using 'columns' with 'order'
Head
@dm:head
Get first 'n' rows
Tail
@dm:tail
Get last 'n' rows
Dedup
@dm:dedup
Dedup rows using specified 'columns'
Diff
@dm:diff
Compare input dataset against a 'base_dataset'
Drop Null
@dm:dropnull
Drop rows if specified 'columns' have null values
Fix Null
@dm:fixnull
Replace null values in 'columns' with specified value
To Type
@dm:to_type
Change data type to str or int or float for specified columns
Change Time Format
@dm:change_time_format
Change datetime from one format to another for all specified columns
Group By
@dm:groupby
Group rows using specified 'columns' and specified 'agg' function
Select Columns
@dm:selectcolumns
Select columns using 'include' regex and/or 'exclude' regex
Merge Columns
@dm:mergecolumns
Merge columns using 'include' regex and/or 'exclude' regex into 'to' column
Fix Columns
@dm:fixcolumns
Fix column names such that they contain only allowed characters
Describe
@dm:describe
Describe the input dataframe using optional 'columns' attribute
Histogram
@dm:hist
Create histogram using 'timestamp' column and user 'interval' binning
Data Binning
@dm:bin
Create bins for numerical 'column' and bins specified by 'bins' parameter
Concat
@dm:concat
Concatenate set of saved dataframes ('names'). Each dataframe must have been saved using dm:save
Explode
@dm:explode
Explode a 'column' into rows by splitting the value using a 'sep' separator
Explode JSON
@dm:json-explode
Explode JSON data into rows
Implode
@dm:implode
Implode 'merge_cols' into comma separated list
Event Zoning
@dm:eventzoning
Compute event zones using 'groupby', 'created', 'resolved' columns
Intra Group
@dm:eventcorr-intra-group
Compute noise reduction for each group using 'groupby', 'created', 'window' columns
Identity Discovery
@dm:identity-discovery
Discover identities in the input dataset
Extract
@dm:extract
Extract data using 'expr' regex pattern from 'columns'
Grok
@dm:grok
Extract data using Grok syntax from a single column'
Save Dataset
@dm:save
Save the dataset with 'name'
Saved Dataset List
*dm:savedlist
List of saved datasets
Recall Dataset
@dm:recall
Recall (load) a previously saved dataset
Save Bookmark
@dm:save_bookmark
Save the bookmark with 'name'
Bookmark List
*dm:bookmark_list
List of saved bookmarks
Load Bookmark
@dm:load_bookmark
Load a previously saved bookmark
Empty Dataset
@dm:empty
Create an empty dataframe with optional columns
Add Row
@dm:addrow
Append a row to input dataframe, with specified column = value parameters
Enrich
@dm:enrich
Enrich the input dataframe using a saved dictionary dataset
Filter Using Dict
@dm:filter-using-dict
Filter rows using a dictionary. Action can be 'include' or 'exclude'
Check Integrity
@dm:check-integrity
Check integrity of input data using 'rules' dataset and save results to 'errors' dataset
Fail If Shape
@dm:fail-if-shape
Fail the pipeline, if input dataframe shape meets criteria expressed using 'row_count' & 'column_count'
Metric Correlation
@dm:metric-corr
Computes correlation between columns specified as metric and value column
Transpose
@dm:transpose
Transposes columns to rows
Pivot Table
@dm:pivot_table
Creates Pivot Table with index and columns
Melt
@dm:melt
Unpivot a DataFrame from wide to long format
DNS IP To Name
@dm:dns_ip_to_name
Perform reverse DNS lookup to map IP Addresses to Hostnames on specified columns
DNS Name To IP
@dm:dns_name_to_ip
Perform DNS lookup to map Hostnames to IP Addresses on specified columns
AIA Express
@aiaexpress:aiaexpress
Load the file using filename and pipeline type parameters
AWS EC2 My Images
*aws:
EC2 Images owned by this account in the region
AWS EC2 Volumes
*aws:
EC2 Volumes in the region
AWS EC2 VPCS
*aws-dev:
EC2 VPCs in the region
AWS EC2 Addresses
*aws:
EC2 Elastic IP Addresses in the region
AWS S3 Buckets
*aws:
S3 Buckets in the region
AWS Daily Costs
@aws:
AWS Daily Costs in the region
Regression Analysis
@cfxml:regression
ML Regression for timeseries data
Classify Training
@cfxsml:classify-train
CFX ML Classification training
Classify Prediction
@cfxsml:classify-predict
CFX ML Classification prediction
Log Clustering
@cfxusml:logclustering
CFX ML: log clustering and save the model with 'model_name'
Log Prediction
@cfxusml:logpredict
CFX ML: log cluster prediction using pre-saved 'model_name'
Input Validation
@cfxusml:input_validation
CFX ML: Input validation for log clustering and save the report with 'result'
Output Validation
@cfxusml:output_validation
CFX ML: Input validation for log clustering and save the report with 'result'
Consul Status
*consul:consul-status
Consul Status
Consul Metrics
@consul:consul-metrics
Consul Metrics
Consul Datacenters
*consul:consul-datacenters
Consul Datacenters
Consul Nodes
*consul:consul-nodes
Consul Nodes
Consul Services
*consul:consul-services
Consul Services
Fortinet Logs
@datagen:fortinet_logs
Fortinet security event log generator
Symantec IDS Logs
@datagen:symantec_ids_logs
Symantec IDS Logs for Windows Hosts
CPU Data Gen
@datagen:cpu
CPU Usage data
Memory Data Gen
@datagen:memory
Memory Usage data
Network IO Data Gen
@datagen:network_io
Network IO Usage data
Splunk Logs
@datagen:tm-splunk-logs
Log simulation for TM Splunk logs
Active Alerts Filters
#dimensions:active-alerts-filters
Active Alerts Filter
Regression Jobs
#dimensions:ml-insights:regressionJobs
Regression Jobs
Write Stream
@dn:write-stream
Write data to specified stream in the data network
Slack Users
*slack:users
Retrieves Slack Users
Read Mail
@imap:readmail
Get emails from an IMAP Server
Istio Namespaces
*istio:namespaces
Kiali/istio Namespaces
Istio Services
@istio:services
Kiali/istio Services
Istio Applications
@istio:applications
Kiali/istio applications
Istio Workloads
@istio:workloads
Kiali/istio Workloads
Nagios Host
*nagios:nagios_host
Tag to list all hosts in nagios
Nagios Host Status
*nagios:nagios_host_status
Tag to list hosts status in nagios
Nagios Host Group
*nagios:nagios_host_group
Tag to list all host groups in nagios
Nagios Host Group Members
*nagios:nagios_host_group_members
Tag to list all host group members in nagios
Nagios Service
*nagios:nagios_service
Tag to list all services in nagios
Nagios Service Status
*nagios:nagios_service_status
Tag to list all services status in nagios
Nagios Service Group
*nagios:nagios_service_group
Tag to list all services groups in nagios
Nagios Service Group Members
*nagios:nagios_service_group_members
Tag to list all services group members in nagios
Nagios Logs
@nagios:nagios_logs
Tag to list all logs in nagios
Nagios Alerts
@nagios:nagios_alerts
Tag to list all alerts in nagios
OpenAI
@openai:classify
Semantic search based classification using a specified OpenAI engine
OpenAI Text
@openai:complete
Do the text completion using OpenAI for specified input
Prometheus
Targets
*prometheus:targets
Currently monitored targets
Prometheus
Metric
*prometheus:metric-metadata
Metric Metadata
Prometheus
Target
*prometheus:target-metadata
Target Metadata
Prometheus
Metric
@prometheus:metric-range
Metric range over a time duration
Prometheus
Metric
@prometheus:metric-instant
Metric instant value, with optional timestamp
Prometheus
Alerts
*prometheus:alerts
Currently monitored targets
Prometheus Metric
@prometheus:metric-inventory
Inventory derived from metric, with timestamp
REST API
Read
@restclient:read
Read data using REST Client
REST API Write
@restclient:write
Write input data using REST Client
REST API Invoke
@restclient:invoke
Invoke APIs using REST Client. Input data is passed through to output.
Load File
@rubrik:loadfile
Load rubrik event data from file using filename parameter
CloudDefense
@secops:container_vulnerabilities
Provides container security vulnerability insights
ServiceNow Incidents
#snow:incidents
ServiceNow Incidents
ServiceNow Incident Update
#snow:incidents-update
ServiceNow Incidents
ServiceNow Change Requests
#snow:change-requests
ServiceNow Change Requests
ServiceNow Query Table
@snow:query-table
Get data from specified ServiceNow table
ServiceNow Append
@snow:append-to-table
Append data to a ServiceNow table
ServiceNow KB Articles
#snow:kb_knowledge_base
Retrieve ServiceNow KB bases
ServiceNow KB Keyword
#snow:kb_keyword
ServiceNow Knowledge keyword
ServiceNow CMDB
#snow:cmdb-relations
ServiceNow CMDB Relationships
ServiceNow Configure
#snow:cmdb-config-items
ServiceNow CMDB All Configuration Items
ServiceNow Computers
#snow:cmdb-computers
ServiceNow CMDB Computers
ServiceNow Network
#snow:cmdb-network
ServiceNow CMDB Network
TeamCity Builds
*teamcity:builds
TeamCity Builds
TeamCity Changes
@teamcity:changes_by_build
TeamCity Build Changes
VMware VROps
@vrops:resources
VMware vROps Resources
VMware VROps
@vrops:resource_properties
VMware vROps Resource Properties
VMware VROps
@vrops:resource_relationship
VMware vROps Resource Relationships
VMware VROps
@vrops:alerts
VMware vROps Alerts
VMware VROps VM Summary
*vrops:vm_summary
VMware vRops Virtual Machine Summary
VMware VROps Datastore Summary
*vrops:datastore_summary
VMware vRops Datastore Summary
VMware VROps Hostsystem
*vrops:hostsystem_summary
VMware vRops HostSystem Summary
VMware VROps Datacenter Summary
*vrops:datacenter_summary
VMware vRops Datacenter Summary
IBM Watson NLP
@watson:categories
Identify categories in the input description using IBM Watson NLP engine
IBM Watson NLP Concepts
@watson:concepts
Identify concepts in the input description using IBM Watson NLP engine
IBM Watson NLP Keywords
@watson:keywords
Identify keywords in the input description using IBM Watson NLP engine
IBM Watson NLP Sentiment
@watson:sentiment
Perform sentiment analysis on the input description using IBM Watson NLP engine
IBM Watson NLP
@watson:summarize
Perform summarization on the input description using IBM Watson NLP engine
Azure Instances
*azure:instances
Azure Instances
Azure My Images
*azure:my-images
Azure Images owned by this account
Azure Volumes
*azure:volumes
Azure Volumes
Azure Networks
*azure:networks
Azure Networks
Azure Network IPS
*azure:networkips
Azure Network IPs
Azure Network LBS
*azure:networklbs
Azure Load Balancers
Azure Storage
*azure:storagecontainers
Azure Storage Containers
Azure Insights Logs
*azurein:logs:workspaces
Azure Insights workspaces
Azure Insights Analytics
@azurein:logs:analytics
Azure Insights log analytics
Azure Insights Metrics List
*azurein:metrics-list
Azure Insights metrics
Azure Insights Metric Data
@azurein:metric-data
Azure Insights metric data
Azure Insights
*azurein:metric-alarms
Azure Insights metric alarms
Splunk Apps
*splunk:splunkApps
Tag to list all installed splunk apps
Splunk Main Search
@splunk:main:search
Tag for Index: main
Maria DB Table
#mariadb
Mysql Table cfxregistry.service
VMware vCenter VMS
*vc:vms
VMware VMs
VMware vCenter Hosts
*vc:hosts
VMware ESX Hosts
VMware vCenter vSwitches
*vc:vswitches
VMware ESX vSwitches
VMware vCenter Datastores
*vc:datastores
VMware ESX Datastores
PRTG Devices
*prtg:prtg_devices
To list all the devices in prtg
PRTG Sensors
*prtg:prtg_sensors
To list all the sensors in prtg
PRTG Alerts
*prtg:prtg_alerts
To list all the historical alerts in prtg
Time Filter
dm:time-filter
Apply time filter on specified timestamp column
Evaluate multi processing
dm:eval-multi-proc
Map values using evaluate function.
Map multi processing
dm:map-multi-proc
Inline mapping of columns 'from' using 'func' and save output to 'to' column
Apply Data model
dm:apply-data-model
Apply specified data model to input dataframe.
Sample
dm:sample
Radomly sample 'n' number of rows
Add missing columns
dm:add-missing-columns
Add columns if not found in the input
Drop null columns
dm:drop-null-columns
Drop columns with a specified % of null values
Rename columns
dm:rename-columns
Rename specified column names using new_column_name = 'old_column_name' format
Histogram groupby
dm:hist-groupby
Perform Groupby and then create histogram using 'timestamp' column and use 'interval' binning
Explode Timerange into windows
dm:explode-timerange-into-windows
Explode a specified timerange into windows for events
Replace data
dm:replace-data
Replace data using 'expr' regex pattern from 'columns'
Dataset location
dm:dataset-location
Get the location information for a previously saved dataset
Recall chunked
dm:recall-chunked
Recall (load) a previously saved dataset as a data stream. Loads num_rows in each chunk.
Enrich using ip cidr
dm:enrich-using-ip-cidr
Enrich the input dataframe using a saved dictionary dataset. Match IP address in input dataframe with CIDRs specified in the dictionary
Metric correlator
dm:metric-correlator
Computes correlation between metrics specified in metric label column
Object Add
dm:object-add
Add object to a folder
Object Delete
dm:object-delete
Delete object from a folder
Object Get
dm:object-get
Get Object from a folder
Object List
dm:object-list
List objects for a folder
Object inline img
dm:object-to-inline-img
Convert object pointers from a column into inline HTML img tags
Object to File
dm:object-to-file
Convert object pointers from a column into file
File to Object
dm:file-to-object
Convert files from a column into objects
Object to Content
dm:object-to-content
Convert object pointers from a column into content
Content to Object
dm:content-to-object
Convert data from a column into objects
Object delete list
dm:object-delete-list
Delete list of objects
Set tracing context
dm:set-tracing-context
Set the tracing context using name = value pairs
Apply alert rules
dm:apply-alert-rules
Unselect nodes in stack of given node types if there is no right link available
Logarchive replay
dm:logarchive-replay
Read the data from given archive for a specified time interval
Logarchive save
dm:logarchive-save
Save the log data in given archive of given repository
Run Pipeline
exec:run-pipeline-multi-proc
Run a specified pipeline concurrently with specified number of processes
Run Pipeline by Row
exec:run-pipeline-by-row
Run one pipeline per each input row.
Pipeline by row multi processes
exec:run-pipeline-by-row-multi-proc
Concurrently run one or more pipelines. one pipeline per each input row.
Appdynamics Apps
*AppDynamics:appdynamics-apps
Lists all installed Apps monitored in Appdynamics
Appdynamics Apps Backends
AppDynamics:appdynamics-apps-backends
Lists all backened info of Apps monitored in Appdynamics
Appdynamics Apps Business Transactions
AppDynamics:appdynamics-apps-business-transactions
Lists all business transactions of Apps monitored in Appdynamics
Appdynamics Apps Nodes
AppDynamics:appdynamics-apps-nodes
Lists all nodes of Apps monitored in Appdynamics
Appdynamics Apps Tiers
AppDynamics:appdynamics-apps-tiers
Lists all tiers of Apps monitored in Appdynamics
Appdynamics Database collectors
*AppDynamics:appdynamics-db-collectors
Lists all collectors of databases monitored in Appdynamics
Appdynamics Database Servers
*AppDynamics:appdynamics-db-servers
Lists all servers of databases monitored in Appdynamics
Appdynamics Apps Metrics List
AppDynamics:appdynamics-apps-metrics-list
Lists all metrics of apps in Appdynamics
Appdynamics Apps Metrics Data
AppDynamics:appdynamics-apps-metrics-data
Lists all metric data of apps in Appdynamics
AppDynamics Database Metrics List
*AppDynamics:appdynamics-db-metrics-list
Lists all metrics of databases in Appdynamicssource_typeappdynamics
AppDynamics Database Metrics Data
AppDynamics:appdynamics-db-metrics-data
Lists all metric data of databases in Appdynamics
AWS EC2 Instance types
aws:ec2-instance-types
EC2 Instance Types in the region
AWS EC2 security groups
aws:ec2-security-groups
EC2 Security Groups in the region
AWS Subnets
@aws:ec2-subnets
EC2 Subnets
AWS EC2 Instances
@aws:ec2-instances
EC2 Instances in the region
AWS EC2 My Images
@aws:ec2-my-images
EC2 Images owned by this account in the region
AWS EC2 Vpc peers
@aws:ec2-vpc-peers
EC2 VPC Peers in the region
AWS EC2 Internet Gateways
@aws:ec2-internet-gateways
EC2 Internet Gateway in the region
AWS ELBv2 Load Balancers
@aws:elbv2-load-balancers
ELBv2 Load Balancers in the region
AWS EFS File Systems
@aws:efs-file-systems
EFS File Systems in the region
AWS CE Daily costs
@aws:ce-daily-costs
CE Dailycosts in the region
Regression bulk train
@cfxml:regression-bulk-train
ML regression training for multiple timeseries datasets.
Regression bulk anomalies
@cfxml:regression-bulk-anomalies
ML regression anomaly prediction for multiple timeseries datasets.
Save ML Dataset
dm:save-ml-dataset
Save the ML Datasets
Load ML Dataset
dm:load-ml-dataset
Load the ML Datasets
MySQL Alerts
#mysql:alerts
Mysql Table alert_processor_.allalertsview
MySQL Incidents
#mysql:incidents
Mysql Table cfxdimensions_ap.incident
MYSQL list Database tables
@mysqlv2:list-dbtables
MySQL - get database tables
MYSQL Create table
@mysqlv2:create-table
MySQL - create tables
MYSQL Meta
@mysqlv2:meta
MySQL - get database table schema
MYSQL Read
#mysqlv2:read
MySQL - query the data from a database table
MYSQL Update
@mysqlv2:update
MySQL - update an existing record within a database table
MYSQL Append
@mysqlv2:append
MySQL - add a new record to an existing database table
Nagios Metrics
@nagios:nagios-metrics
Tag to query performance metrics in nagios
Nagios Historical Metrics
@nagios:nagios-historical-metrics
Tag to query historical metrics in nagios
Nagios Predicted Metrics
@nagios:nagios-predicted-metrics
Tag to query predicted metrics in nagios
Regression
@regression:regression
ML Regression for a single timeseries dataset.
Regression
@regression:regression-bulk-train
ML regression training for multiple timeseries datasets.
Regression
@regression:regression-bulk-anomalies
ML regression anomaly prediction for multiple timeseries datasets.
Restclient Read bulk
@restclient:read-bulk
Read data using REST Client with the parameters provided in the input dataset
VMware vCenter Meta
@vc:meta
VMware Metadata Creator
VMware vCenter Summary
*vc:vcenter-summary
VMware vCenter Summary
SSH Execute
@ssh:execute
Execute the command on the ssh node and get status, output and errors
SSH Write Data
@ssh:write-data
Write the input dataframe to ssh node with specified filename
SSH Write files
@ssh:write-files
Write each input row as file on ssh node. Expects 'filename' and 'data' columns
SSH Read Data
@ssh:read-data
Read dataframe from ssh node with specified filename
SSH Read file
@ssh:read-file
Read a single file form ssh node
SSH Read Directory
@ssh:read-directory
Read multiple files from a given directory on ssh node
Servicenow List tables
*snowv2:list-tables
List all tables available in ServiceNow instance (CMDB, Incidents or others)
Servicenow Query table
#snowv2:query-table
Get data from specified ServiceNow table (CMDB or others), use CFXQL to filter the data.
Servicenow Append to table
@snowv2:append-to-table
Add a new record to ServiceNow table(CMDB or others)
Servicenow Update table
@snowv2:update-table
Update an existing record in ServiceNow table(CMDB or others)
Servicenow Meta
@snowv2:meta
Get metadata of a specified ServiceNow table (CMDB, Incidents or others)
Servicenow List Incidents
#snowv2:list-incidents
List all incidents available in ServiceNow instance, use CFXQL to filter the data.
Servicenow Create incident
@snowv2:create-incident
Create a new ServiceNow Incident
Servicenow Update incident
@snowv2:update-incident
Update an existing ServiceNow Incident with new data
Servicenow Attach to incident
@snowv2:attach-to-incident
Attach a specified dataset as an attachment to ServiceNow incident.
ServiceNow CMDB Table relations
@snowv2:cmdb-table-relations
ServiceNow CMDB Relationships
Elasticsearch List indices
*es-dev-v2:list-indices
Lists all available indices on Elasticsearch
Elasticsearch MetaData
@es-dev-v2:index-meta
Reads the metadata from Elasticsearch index
Elasticsearch Read index
#es-dev-v2:read-index
Reads the data from Elasticsearch indice(s).It is a data sink and expects 'index' param as an input.
Elasticsearch
@es-dev-v2:read-index-histogram
Reads the Histogram data from Elasticsearch indice(s)
Elasticsearch
@es-dev-v2:update-index
Updates the record(s) to an existing or a new index on Elasticsearch
Elasticsearch
@es-dev-v2:append-index
Appends the record(s) to an existing or a new index on Elasticsearch
Minio Save
@minio:save
Save the dataset with 'name'
Minio SavedList
*minio:savedlist
List of saved datasets
Minio Recall
@minio:recall
Recall (load) a previously saved dataset
Minio Recal Chunked
@minio:recall-chunked
Recall (load) a previously saved dataset as a data stream. Loads num_rows in each chunk.
Minio Save bookmark
@minio:save-bookmark
Save the bookmark with 'name'
Minio Bookmark List
*minio:bookmark-list
List of saved bookmarks
Minio Load Bookmark
@minio:load-bookmark
Load a previously saved bookmark
Minio Save Template
@minio:save-template
Save the formatting template with 'name'
Minio Load Template
@minio:load-template
Load the formatting template with 'name'
Minio TemplateList
*minio:template-list
List of saved formatting templates
Minio Save ML Model
@minio:save-ml-model
Save the ML Model with 'name' and 'model_type'
Minio load ML Model
@minio:load-ml-model
Load the ML Model with 'name' and 'model_type'
Minio ML Model List
*minio:ml-model-list
List of saved ML Models
Minio Stack Save
@minio:stack-save
Save application Stack specified by 'name'
Minio Stack Load
@minio:stack-load
Load application Stack specified by 'name'
Minio Stack List
*minio:stack-list
List of application Stacks
Minio Stack topology
@minio:stack-topology
Create stack from input stacksource_typeminio
Minio Stack Generate
@minio:stack-generate
Generate stack from input topology dataset
Minio Object Add
@minio:object-add
Add object to a folder
Minio Object Delete
@minio:object-delete
Delete object from a folder
Minio Object Get
@minio:object-get
Get Object from a folder
Minio Object List
@minio:object-list
List objects for a folder
Minio Object to inline Img
@minio:object-to-inline-img
Convert object pointers from a column into inline HTML img tags
Minio Object to File
@minio:object-to-file
Convert object pointers from a column into file
Minio File to Object
@minio:file-to-object
Convert files from a column into objects
Minio Content to Object
@minio:content-to-object
Convert data from a column into objects
Minio Object to Content
@minio:object-to-content
Convert object pointers from a column into content
Minio Object Delete List
@minio:object-delete-list
Delete list of objects
Agent RunDiscovery
@agent:cfx-edgecollector:runDiscovery
Run the job to collect device data
Agent JobList
@agent:cfx-edgecollector:getJobList
Get all job list
Agent Create Job
@agent:cfx-edgecollector:createJob
Creates a discovery job
Agent Update Job
@agent:cfx-edgecollector:updateJob
Update a discovery job
Agent Delete Job
@agent:cfx-edgecollector:deleteJob
Delete given job
Agent Get Job logs
@agent:cfx-edgecollector:get-job-logs
Get logs of given job
Agent Get Status
@agent:rda-event-gateway:get-status
List all endpoints configured at this gateway and current status
Agent Object-types in model
@agent:cfxai-vision:object-types-in-model
List object types in the input trained model
Agent Detect objects in video
@agent:cfxai-vision:detect-objects-in-video
Detect objects in video files(s) using Convolutional Neural Network (CNN)
Agent Detect faces in video
@agent:cfxai-vision:detect-faces-in-video
Detect Known or Unknown faces in the video.
Windows Generate Keberos ticket
*windows-inventory:generate-kerberos-ticket
Generate kerberos ticket using kinit utility
Windows Network Connections
@windows-inventory:netstat
Collects Windows TCP/UDP Network connections
Windows Processe Information
@windows-inventory:processes
Collects Windows Process information
Windows Network Configuration
@windows-inventory:network-config
Collects Windows Network Interface IP configuration
Windows Services Information
@windows-inventory:services
Collects Windows Services information
Windows System Information
@windows-inventory:system-info
Collects Windows System information
Splunk Search-index
#splunkv2:search-index
Query and filter log event records within an index in Splunk
Splunk List indexs
*splunkv2:list-indexes
List of indexes available in Splunk
Splunk Add to index
@splunkv2:add-to-index
Add log event records to an index in Splunk
Read Stream with Ack
@rn:read-stream-with-ack
Read one message at a time from the specified stream and send ack to publisher
Write Stream with Ack
@rn:write-stream-with-ack
Write input dataframe as messages to a specified stream. Each row is encoded as a JSON object. Ensures that subscriber has acknowledged the message
Write Stream
@rn:write-stream
Write input dataframe as JSON message object to a specified stream.
Write Stats to Stream
@rn:write-stats-to-stream
Write input dataframe stats (row count, byte count) to specified stream.
Write Macaw Notification to asset Db
@rn:write-macaw-notifcation-asset-db
Send Macaw Notication to stream ASSET_DB_UPDATED to notify that a dataset has been upddated
Read Stream
@rn:read-stream
Read one more rows from a specified stream in a chunked manner.
Dimensions List tags
*dimensionsv2:list-caas-tags
Lists all available tags
Dimensions Read tags
#dimensionsv2:read-caas-tags
Read Information from dataset.
Dimensions Meta
@dimensionsv2:meta
Metadata information
Kubernetes Endpoint addresses
@kubernetes-inventory:endpoint-addresses
Collects endpoint addresses information from Kubernetes
Kubernetes Endpoints
@kubernetes-inventory:endpoints
Collects endpoints information from Kubernetes
Kubernetes Service ports
@kubernetes-inventory:service-ports
Collects services ports information from Kubernetes
Kubernetes Services
@kubernetes-inventory:services
Collects services information from Kubernetes
Kubernetes Configmap
@kubernetes-inventory:configmap
Collects configmap information from Kubernetes
Kubernetes Deployment Volumes
@kubernetes-inventory:deployment-volumes
Collects deployment volumes information from Kubernetes
Kubernetes Deployment Containers
@kubernetes-inventory:deployment-containers
Collects deployment information from Kubernetes
Kubernetes Deployment
@kubernetes-inventory:deployment
Collects pod containers information from Kubernetes
Kubernetes Pod Containers
@kubernetes-inventory:pod-containers
Collects pods information from Kubernetes
Kubernetes Pods
@kubernetes-inventory:pods
Collects pods information from Kubernetes
Kubernetes Nodes Images
@kubernetes-inventory:nodes-images
Collects node images information from Kubernetes
Kubernetes Nodes
@kubernetes-inventory:nodes
Collects node information from Kubernetes
Kinesis Read Stream
@kinesis:read-stream
Read Data from a stream in AWS Kinesis
Kinesis Write Stream
@kinesis:write-stream
Write Data to a stream in AWS Kinesis
kinesis Describe stream
@kinesis:describe-stream
Describe all shards of a stream in AWS Kinesis
Windows Inventory Generate Kerberos ticket
*windows-inventory:generate-kerberos-ticket
Generate kerberos ticket using kinit utility
Windows Inventory Netstat
@windows-inventory:netstat
Collects Windows TCP/UDP Network connections
Windows Inventory Processes
@windows-inventory:processes
Collects Windows Process information
Windows Inventory Network -config
@windows-inventory:network-config
Collects Windows Network Interface IP configuration
Windows Inventory Services
@windows-inventory:services
Collects Windows Services information
Windows Inventory System-info
@windows-inventory:system-info
Collects Windows System information
Linux Netstat
@linux-inventory:netstat
Collects Linux TCP/UDP Network connections
Linux Docker containers
@linux-inventory:docker-containers
Collects Linux TCP/UDP Network connections
Linux Docker network
@linux-inventory:docker-network
Collects Docker Container Network Interface IP configurations
Linux Processes
@linux-inventory:processes
Collects Linux Process information
Linux Docker processes
@linux-inventory:docker-processes
Collects Docker Container Process information
Linux Network config
@linux-inventory:network-config
Collects Linux Network Interface IP configuration
Linux Services
@linux-inventory:services
Collects Linux Services information
Linux System-info
@linux-inventory:system-info
Collects Linux System information
Linux Docker Netstat
@linux-inventory:docker-netstat
Collects Docker Container TCP/UDP Network connections
Dell EMC Unity Alerts
@emc-unity:alerts
List all alerts in EMC Unisphere Unity
Dell EMC Unity Events
@emc-unity:events
List all events in EMC Unisphere Unity
Dell EMC Unity System-info
@emc-unity:system-info
List EMC Unisphere Unity System Information
Dell EMC Unity Service
@emc-unity:service
List Service Information of EMC Unisphere Unity
Dell EMC Unity Hosts
@emc-unity:hosts
List Host Information of EMC Unisphere Unity
Dell EMC Unity Disks
@emc-unity:disks
List Virtual Drives of EMC Unisphere Unity
Dell EMC Unity Luns
@emc-unity:luns
List LUNs in EMC Unisphere Unity
Dell EMC Unity Pools
@emc-unity:pools
List Storage Pools in EMC Unisphere Unity
Dell EMC Unity Storage Resource
@emc-unity:storage-resources
List Datastores in EMC Unisphere Unity
Dell EMC Unity File system
@emc-unity:file-system
List Files in EMC Unisphere Unity
Dell EMC Unity Cifs Shares
@emc-unity:cifs-shares
List SMB Shares in EMC Unisphere Unity
Dell EMC Unity Nfs Shares
@emc-unity:nfs-shares
List NFS Shares in EMC Unisphere Unity
Dell EMC Unity Nas Servers
@emc-unity:nas-servers
List NAS Servers in EMC Unisphere Unity
Dell EMC Unity Iscsi Nodes
@emc-unity:iscsi-nodes
List iSCSI Nodes in EMC Unisphere Unity
Dell EMC Unity Ethernet Ports
@emc-unity:ethernet-ports
List Ethernet Ports in EMC Unisphere Unity
Dell EMC Unity Interfaces
@emc-unity:interfaces
List Replication Interfaces in EMC Unisphere Unity
Dell EMC Unity Iscsi Interfaces
@emc-unity:iscsi-interfaces
List iSCSI Interfaces in EMC Unisphere Unity
Dell EMC Unity Initiators
@emc-unity:initiators
List Host Initiators in EMC Unisphere Unity
Dell EMC Unity Initiator paths
@emc-unity:initiator-paths
List Host Initiator Paths in EMC Unisphere Unity
Dell EMC Unity Fc ports
@emc-unity:fc-ports
List Fibre Channel Ports in EMC Unisphere Unity
Dell EMC Unity Metric list
@emc-unity:metric-list
List all metrics in EMC Unisphere Unity
Dell EMC Unity Metrics
@emc-unity:metrics
Query metric data in EMC Unisphere Unity
Cisco UCS C-Series PCI Inventory
@cisco-ucs-cimc:server-pci-inventory
Cisco UCS C-Series PCI Inventory
Cisco UCS C-Series Storage Inventory
@cisco-ucs-cimc:server-storage-inventory
Cisco UCS C-Series Storage Inventory
Cisco UCS C-Series Chassis Inventory
@cisco-ucs-cimc:server-chassis-inventory
Cisco UCS C-Series Chassis Inventory
Cisco UCS CIMC meta creator
@cisco-ucs-cimc:meta
CIMC meta creator
Dell EMC Isilon Cluster Information
@isilon:cluster-info
List all Nodes in Isilon Cluster
Dell EMC Isilon Drivers
@isilon:drives
List Drives in all Nodes of Isilon Cluster
Dell EMC Isilon Partitions
@isilon:partitions
List Partitions in all Nodes of Isilon Cluster
Dell EMC Isilon Interfaces
@isilon:interfaces
List Network interfaces in all Nodes of Isilon Cluster
Dell EMC Isilon MAC Interfaces
@isilon:interfaces-mac
List Network interfaces with MAC Address in all Nodes of Isilon Cluster
Dell EMC Isilon License
@isilon:license
List Isilon Cluster and Software Licenses
Dell EMC Isilon Storage pools
@isilon:storage-pools
List all Storage Pools of Isilon Cluster
Dell EMC Isilon Snapshots
@isilon:snapshots
List all Snapshots in Isilon Cluster
Dell EMC Isilon Nfs Exports
@isilon:nfs-exports
List all NFS exports of Isilon Cluster
Dell EMC Isilon SMB Shares
@isilon:smb-shares
List all SMB Shares of Isilon Cluster
Cisco Nexus OS Show Version
@nxos:show-version
Cisco NX-OS - show version command
Cisco Nexus OS Show Inventory
@nxos:show-inventory
Cisco NX-OS - show inventory command
Cisco Nexus OS Show Vlan
@nxos:show-vlan
Cisco NX-OS - show vlan command
Cisco Nexus OS Show Cdp Neighbors Details
@nxos:show-cdp-neighbors-detail
Cisco NX-OS - show cdp neighbors detail command
Cisco Nexus OS Show Interface
@nxos:show-interface-brief
Cisco NX-OS - show interface brief command
Cisco Nexus OS Show MAC Address table
@nxos:show-mac-address-table
Cisco NX-OS - show mac address-table command
Cisco Nexus OS Show Lldp neighbors Details
@nxos:show-lldp-neighbors-detail
Cisco NX-OS - show lldp neighbors detail command
Cisco Nexus OS Show Flogi Database
@nxos:show-flogi-database
Cisco NX-OS - show flogi database command
Cisco Nexus OS Show port Channel Summary
@nxos:show-port-channel-summary
Cisco NX-OS - show port-channel summary command
Cisco Nexus OS Show Vpc brief Status
@nxos:show-vpc-brief-status
Cisco NX-OS - show vpc brief command
Cisco Nexus OS Show Vpc brief Summary
@nxos:show-vpc-brief-summary
Cisco NX-OS - show vpc brief command
Cisco Nexus OS Show Zoneset Active
@nxos:show-zoneset-active
Cisco NX-OS - show zoneset active command
Cisco Nexus OS Show fcns Database
@nxos:show-fcns-database
Cisco NX-OS - show fcns database command
Cisco Nexus OS Show Vpc peer
@nxos:show-vpc-peer
Cisco NX-OS - show vpc peer command
Motadata Monitor details
*motadata:monitor-details
List all Monitors in Motadata
Motadata Alerts
@motadata:alerts
List alerts in Motadata
Motadata Metrice
@motadata:metrics
Get metric data from Motadata
Jira Tickets
#jira:issues
Jira Tickets
Jira Create Issue
@jira:create-issue
Create a new Jira Issue
Jira Update Issue
@jira:update-issue
Update a Jira Issue given issue_id
Jira Transition Issue
@jira:transition-issue
Perform a transition on a Jira Issue given issue_id
Jira Add Comment
@jira:add-comment
Add a comment on the specified issue
Infoblox Netmri Alerts
@netmri:alerts
Collects current or historical alerts of managed devices
Infoblox Netmri Devices
@netmri:devices
Collects inventory summary data of managed devices
Infoblox Netmri Interfaces
@netmri:interfaces
Collects interfaces inventory of managed devices
Infoblox Netmri Device Components
@netmri:device-components
Collects device-component inventory of managed devices
Infoblox Netmri Device Groups
@netmri:device-groups
Collects device group membership information of managed devices
Infoblox Netmri Vlan Members
@netmri:vlan-members
Collects VLAN Membership inventory of managed devices
Infoblox Netmri LLdp Neighbors
@netmri:lldp-neighbors
Collects LLDP Neighbors data of managed devices
Infoblox Netmri Cdp Neighbors
@netmri:cdp-neighbors
Collects CDP Neighbors data of managed devices
Infoblox Netmri Topology
@netmri:topology
Collects topology or relationship data of managed devices
Infoblox Netmri Arp table
@netmri:arp-table
Collects ARP table data of end points
Infoblox Netmri Mac address table
@netmri:mac-address-table
Collects MAC address table data of end points
Infoblox Netmri Infra Devices
@netmri:infra-devices
Collects Infrastructure devices data of end points
Infoblox Netmri Device Wireless
@netmri:device-wirelesses
Collects Wireless devices
Infoblox Netapp
@netmri:if-trunks
Collects Interface trunks data of end points
Infoblox Netmri Vlans
@netmri:if-vlans
Collects Interface vLANs data of end points
Infoblox Netmri Switch fwd Neighbors
@netmri:switch-fwd-neighbors
Collects Switch Forwarding Neighbors data of end points
Netapp Network broadcast Domains
@netappc:network-broadcast-domains
List Network Broadcast Domains in ONTAP Cmode.
Netapp Network Ethernet ports
@netappc:network-ethernet-ports
List Network Ethernet Ports in ONTAP Cmode.
Netapp Network fc ports
@netappc:network-fc-ports
List Network Fibre Channel Ports in ONTAP Cmode.
Netapp Network fc interfaces
@netappc:network-fc-interfaces
List Network Fibre Channel Interfaces in ONTAP Cmode.
Netapp lun Maps
@netappc:lun-maps
List LUN Mappings in ONTAP Cmode.
Netapp initiator groups
@netappc:initiator-groups
List Initiator Groups in ONTAP Cmode.
Netapp Network Interfaces
@netappc:network-interfaces
List Network IP Interfaces in ONTAP Cmode.
Netapp Disks
@netappc:disks
List Storage Disks in ONTAP Cmode.
Netapp Cloud targets
@netappc:cloud-targets
List Cloud Tiers in ONTAP Cmode.
Netapp Events
@netappc:events
List All Events in ONTAP Cmode.
Netapp Applications
@netappc:applications
List All Applications in ONTAP Cmode.
Netapp Nfs Connected clients
@netappc:nfs-connected-clients
List NFS Connected Clients in ONTAP Cmode.
Netapp Qtrees
@netappc:qtrees
Retrieves qtrees configured for volumes.
Netapp Nfs export policies
@netappc:nfs-export-policies
List NFS Export Policies in ONTAP Cmode.
Netapp Cluster info
@netappc:cluster-info
List Cluster Information in ONTAP Cmode.
Netapp Cluster Nodes
@netappc:cluster-nodes
List Cluster Nodes Information in ONTAP Cmode.
Netapp Metrics
@netappc:metrics
Collect metric data from ONTAP Cmode. 'uuid' can be provided through input dataset
PureStorage System Information
@purestorage:system-info
Collect system info from PureStorage
PureStorage Hosts
@purestorage:hosts
List Hosts from PureStorage
PureStorage Host Groups
@purestorage:host-groups
List Host Groups from PureStorage
PureStorage Volumes
@purestorage:volumes
List Volumes from PureStorage
PureStorage Network Interfaces
@purestorage:network-interfaces
List Network Interfaces from PureStorage
PureStorage Ports
@purestorage:ports
List Ports from PureStorage
PureStorage Drives
@purestorage:drives
List Drives from PureStorage
PureStorage Volume Groups
@purestorage:volume-groups
List Volume Groups from PureStorage
PureStorage Pods
@purestorage:pods
List Pods from PureStorage
PureStorage Apps
@purestorage:apps
List Apps from PureStorage
PureStorage Metric Data
@purestorage:metric-data
Retrieve metric data from PureStorage
ManageEngine Opmanager Device Details
@opmanager:device-details
ManageEngine OpManager Device Details
ManageEngine ServiceDesk Get incident
*servicedeskplus:get-incident
View specific incident in Manage Engine Service Desk Plus
ManageEngine ServiceDesk Create Incident
@servicedeskplus:create-incident
Upload New incidents to Manage Engine Service Desk Plus
ManageEngine ServiceDesk Update Incident
@servicedeskplus:update-incident
Upload change to previously created incidents to Manage Engine Service Desk Plus
ManageEngine ServiceDesk List templates
*servicedeskplus:list-templates
Manage Engine Service Desk Plus List of Templates with their ID
ManageEngine ServiceDesk Attach file
@servicedeskplus:attach-file
Upload file to specific request in Manage Engine Service Desk Plus
ManageEngine Appmanager Alarams
@appmanager:alarms
ManageEngine Appmanager Alarms List
ManageEngine Appmanager Monitors
@appmanager:monitors
ManageEngine Appmanager Monitors List
ManageEngine Appmanager Monitor types
*appmanager:monitor-types
ManageEngine Appmanager Monitor Types
ManageEngine Appmanager Monitor groups
@appmanager:monitor-groups
ManageEngine Appmanager Monitor Groups List
ManageEngine Appmanager Downtime Details
@appmanager:downtime-details
ManageEngine Appmanager Downtime Details
ManageEngine Appmanager Metric list
*appmanager:metric-list
ManageEngine Appmanager Metrics List
ManageEngine Appmanager Metrics
@appmanager:metrics
ManageEngine Appmanager Metrics
ManageEngine Appmanager List dependencies
@appmanager:list-dependencies
ManageEngine Appmanager Dependencies
PagerDuty Update Incident
@pagerduty:update-incident
Update one incident per each input row in PagerDuty
Cisco IOS Show VLAN
@ios:show-vlan
Cisco IOS - show vlan command
Cisco IOS Show Power inline
@ios:show-power-inline
Cisco IOS - show power inline command
Cisco IOS Show ip-Interface
@ios:show-ip-interface-brief
Cisco IOS - show ip interface brief command
Cisco IOS Show Inventory
@ios:show-inventory
Cisco IOS - show inventory command
Cisco IOS Show Interface
@ios:show-interface
Cisco IOS - show interface command
Cisco IOS Show Etherchannel Summary
@ios:show-etherchannel-summary
Cisco IOS - show etherchannel summary command
Write To Topic
@kafka:write-to-topic
Write data to specified Kafka topic
Poll Topic
@kafka:poll-topic
Poll a Kafka topic for data and read the data
Index Patterns
*kibana:index-patterns
List all available Kibana Index Patterns
Dashboard
*kibana:dashboard-visualizations
List all available Kibana visualizations that are part of dashboards
Visualizations
*kibana:visualizations
List all available Kibana visualizations
Ansible Run Playbook
@ansible:run-playbook
Run Ansible Playbook as specified in an input column. Add results as additional columns in output
NLP Scrape URL
@nlp:scrape-url
Scrape link specified in 'url' column and retrieve title, and plain text content
NLP Scrape Content
@nlp:scrape-content
Scrape the HTML content from specified 'input_col' and retrieve plain text content
NLP Sentiment Analysis
@nlp:analyze-sentiment
Do sentiment analysis on a specified input descriptive column
NLP Extract Nouns
@nlp:extract-nouns
Extract noun phrases from an input descriptive column
NLP Extract Keywords
@nlp:extract-keywords
Extract keyword phrases from an input descriptive column using Rapid Automatic Keyword Extraction (RAKE) algorithm
NLP Named Entity Recognition
@nlp:extract-named-entities
Extract named entities from an input descriptive column
Save Jinja2 Template
@dm:save_template
Save the formatting template with 'name'
Load Jinja2 Template
@dm:load_template
Load the formatting template with 'name'
List of Jinja2 Templates
*dm:template_list
List of saved formatting templates
Apply Jinja2 Template
@dm:apply-template
Apply specified formatting template for all input rows and produce one rendered row
Create Span
@dm:span-creator
Create Spans from input timeseries data
Cisco UCSM Chassis
*ucsm:ucsm_chassis_inventory
Cisco UCS Manager Chassis Inventory
Cisco UCSM Firmware
*ucsm:uscm_fw_inventory
Cisco UCS Manager Firmware Details
Cisco UCSM Server
*ucsm:ucsm_server_summary
Cisco UCS Manager Blade/Rack Server Summary
Cisco UCSM Storage
*ucsm:_server_storage_inventory
Cisco UCS Manager Blade/Rack Servers Storage Inventory
Cisco UCSM HBA
*ucsm:server_hba_inventory
Cisco UCS Manager Blade/Rack Servers Inventory
Cisco UCSM Memory
*ucsm:server_memory_inventory
Cisco UCS Manager Blade/Rack Servers Memory Inventory
Cisco UCSM Network
*ucsm:server_network_inventory
Cisco UCS Manager Blade/Rack Servers Network Inventory
Cisco UCSM CPU
*ucsm:ucsm_server_cpu_inventory
Cisco UCS Manager Blade/Rack Servers CPU Inventory
Cisco UCSM Fabric Interconnect
*ucsm:ucsm_fi_summary
Cisco UCS Manager Fabric Interconnect Overview
Cisco UCSM FI Neighbors
*ucsm:ucsm_fi_neighbors
Cisco UCS Manager Fabric Interconnect Neighbors
Cisco UCSM FI Eth Ports
*ucsm:ucsm_fi_eth_port
Cisco UCS Manager Fabric Interconnect Ethernet Ports
Cisco UCSM FI FC Ports
*ucsm:ucsm_fi_fc_port
Cisco UCS Manager Fabric Interconnect FC Ports
Cisco UCSM IOMs
*ucsm:ucsm_iom_inventory
Cisco UCS Manager I/O Modules
Pagerduty Create Incident
@pagerduty:create-incident
Creates Incident in PagerDuty
Pagerduty List
@pagerduty:list_incidents
Retrieves Incidents from PagerDuty
Send Twilio SMS
@twilio:sms
Sends a SMS using Twilio API service to listed recepient
Append to File
@files:appendfile
Save to file using filename, if file exists, append the data. Supports only CSV format.
Cisco Support
@cisco-support:cisco_product
Lists product information of Cisco devices by product id(s)
Cisco Support Product Info (SN)
@cisco-support:cisco_product_info
Lists product information of Cisco devices by serial number(s)
Cisco Support EoL/EoS (PID)
@cisco-support:cisco_eox_by_pid
Lists EoX information of Cisco devices by product id(s)
Cisco Support EoL/EoS (SN)
@cisco-support:cisco_eox_by_sn
Lists EoX information of Cisco devices by serial number(s)
Cisco Support EoL/EoS (Dates)
@cisco-support:cisco_eox_by_dates
Lists EoX information of Cisco devices between dates
Cisco Support EoL/EoS (Version)
@cisco-support:cisco_eox_sw_ver
Lists EoX information of Cisco devices by software version
Cisco Support Product Defects
@cisco-support:cisco_bugs_by_bid
Lists bugs information of Cisco devices by bug id, PID, release, keywords etc.
Add To Repository
@dvc:add
Adds artifact to Data Version Control (dvc) repository
Commit to Repository
@dvc:commit
Commits artifact to Data Version Control (dvc) repository
Pull from Repository
@dvc:pull
Pull artifacts from Data Version Control (dvc) repository
Synthetic Dataset
@dm:synthetic-dataset
Generates a Dataset with synthetic data. Supports over 220 data types
Synthetic Data Fields
*dm:synthetic-fields
Lists data types that can be used to generate synthetic data. Supports over 220 data types
NATS Read Stream
@nats:read-stream
Read messages from a specified NATS Subject
NATS Write Stream json
@nats:write-stream-json
Wrte input datafdrame as messages to a specified NATS Subject. Each row is encoded as a JSON object
ManageEngine OpManager Alarms
@opmanager:alarms
ManageEngine OpManager Alarms List
ManageEngine OpManager Devices
@opmanager:devices
ManageEngine OpManager Devices List
ManageEngine OpManager Interfaces
@opmanager:interfaces
ManageEngine OpManager Interfaces List
ManageEngine OpManager Metric-list
*opmanager:metric-list
ManageEngine OpManager Metric List
ManageEngine OpManager Metrics
@opmanager:metrics
ManageEngine OpManager Metrics Data
Cisco Intersight UCS Server Summary
*intersight:ucs-server-summary
Lists Cisco UCS Blade/Rack Server Summary
Cisco Intersight UCS Contract Status
*intersight:ucs-contract-status
Lists Cisco UCS Blade/Rack Server Contract Status
Cisco Intersight UCS Chassis Inventory
*intersight:ucs-chassis-inventory
Lists Cisco UCS Chassis Inventory
Cisco Intersight UCS Alarms
*intersight:ucs-alarms
Lists Cisco UCS Alarms
Cisco Intersight UCS FW Inventory
*intersight:ucs-fw-inventory
Lists Cisco UCS Firmware Inventory Details
Cisco Intersight UCS Server Storage
*intersight:ucs-server-storage-inventory
Lists Cisco UCS Blade/Rack Server Storage Inventory
Cisco Intersight UCS Server HBAs
*intersight:ucs-server-hba-inventory
Lists Cisco UCS Blade/Rack Server HBA Inventory
Cisco Intersight UCS Server Networks
*intersight:ucs-server-network-inventory
Lists Cisco UCS Blade/Rack Server Network Inventory
Cisco Intersight UCS Server Memory
*intersight:ucs-server-memory-inventory
Lists Cisco UCS Blade/Rack Server Memory Inventory
Cisco Intersight UCS Server CPUs
*intersight:ucs-server-cpu-inventory
Lists Cisco UCS Blade/Rack Server CPU Inventory
Cisco Intersight UCS FI Summary
*intersight:ucs-fi-summary
Lists Cisco UCS Fabric Interconnect Overview
Cisco Intersight UCS FI Ethernet Ports
*intersight:ucs-fi-eth-port-inventory
Lists Cisco UCS Fabric Interconnect Ethernet Ports
Cisco Intersight UCS FI FC Ports
*intersight:ucs-fi-fc-port-inventory
Lists Cisco UCS Fabric Interconnect Fibre Channel Ports
Cisco Intersight UCS HCL Status
*intersight:ucs-hcl-status-details
Lists Cisco UCS HCL Status Details
Cisco Intersight UCS IO Modules
*intersight:ucs-iom-inventory
Lists Cisco UCS I/O Modules Inventory
Datadog Events
@datadog:events
List all Events in DataDog
Datadog Events by ID
@datadog:event-by-id
Event details by ID in DataDog
Datadog Hosts Summary
@datadog:hosts-summary
List all Hosts in DataDog
Datadog Hosts Networks
@datadog:hosts-networks
List all Hosts Networks in DataDog
Datadog Hosts Disks
@datadog:hosts-disks
List all Hosts Disks in DataDog
Datadog Processes
@datadog:processes
List all Processes in DataDog
Datadog Containers
@datadog:containers
List all Containers in DataDog
Datadog Tags
@datadog:tags
List all Tags in DataDog
Datadog Metrics List
@datadog:metric-list
List all Active Metrics in DataDog
Datadog Metrics
@datadog:metrics
Query metric data from DataDog
NetApp 7-Mode Volumes
@netapp7:volumes
List all Volumes in NetApp ONTAP 7mode
NetApp 7-Mode CIFS Shares
@netapp7:cifs-shares
List CIFS Shares in ONTAP 7mode
NetApp 7-Mode Aggregates
@netapp7:aggregates
List Aggregate Information in ONTAP 7mode
NetApp 7-Mode Network Configurations
@netapp7:network-config
List Active Network Configurations in ONTAP 7mode
NetApp 7-Mode FC Adapters
@netapp7:fc-adapters
List all FCP Adapeters in ONTAP 7mode
NetApp 7-Mode LUNs
@netapp7:luns
List LUNs in ONTAP 7mode
NetApp 7-Mode NFS Exports
@netapp7:nfs-exports
List Active Network Configurations in ONTAP 7mode
NetApp 7-Mode Controller Info
@netapp7:controller-info
List Controller Information of ONTAP 7mode
Purestorage Volumes
@purestorage:volumes
List Volumes in Purestorage
Purestorage Alerts
@purestorage:alerts
List Alerts in Purestorage
Purestorage Array Connections
@purestorage:array-connections
List Array Connections in Purestorage
Purestorage Protection Groups
@purestorage:protection-groups
List Protection Groups in Purestorage
Purestorage App Nodes
@purestorage:app-nodes
List Applications Nodes in Purestorage
EMC Unity Alerts
@emc-unity:alerts
List all alerts in EMC Unisphere Unity
EMC Unity Events
@emc-unity:events
List all events in EMC Unisphere Unity
EMC Unity Sys Info
@emc-unity:system-info
List EMC Unisphere Unity System Information
EMC Unity Service
@emc-unity:service
List Service Information of EMC Unisphere Unity
EMC Unity Hosts
@emc-unity:hosts
List Host Information of EMC Unisphere Unity
EMC Unity Disks
@emc-unity:disks
List Virtual Drives of EMC Unisphere Unity
EMC Unity Luns
@emc-unity:luns
List LUNs in EMC Unisphere Unity
EMC Unity Pools
@emc-unity:pools
List Storage Pools in EMC Unisphere Unity
EMC Unity Filesystem
@emc-unity:file-system
List Files in EMC Unisphere Unity
EMC Unity CIFS Shares
@emc-unity:cifs-shares
List SMB Shares in EMC Unisphere Unity
EMC Unity NFS Shares
@emc-unity:nfs-shares
List NFS Shares in EMC Unisphere Unity
EMC Unity NAS Servers
@emc-unity:nas-servers
List NAS Servers in EMC Unisphere Unity
EMC Unity Nodes
@emc-unity:iscsi-nodes
List iSCSI Nodes in EMC Unisphere Unity
EMC Unity Ethernet Ports
@emc-unity:ethernet-ports
List Ethernet Ports in EMC Unisphere Unity
EMC Unity Metrics List
@emc-unity:metric-list
List all metrics in EMC Unisphere Unity
EMC Unity Metrics
@emc-unity:metrics
Query metric data in EMC Unisphere Unity
Bulk Collect
@exec:bulk-collect
Run bulk data collection queries provided through input dataframe and return agggregate output
Get Input
@exec:get-input
Return the input dataframe provided for this pipeline, if any
Collector Data in JSON
@files:ec-get-collected-data
Get collected JSON data from a CloudFabrix EdgeCollector
Collector Data
@files:ec-get-raw-data
Get collected raw text from a CloudFabrix EdgeCollector
Load Content from File
@files:load-content-from-file
Load content from file specified by 'filename' column into 'content' column
Save Content to FIle
@files:save-content-to-file
Save content from 'content' column into file specified by 'filename' column
Export Content to Zip
@files:export-content-to-zip-file
Export each row as a file into a ZIP file
Garbage Collection
@dm:gc
Perform immediate garbage collection. Useful when dealing with very large datasets.
Fix Null with Regex
@dm:fixnull-regex
Replace null values in all columns that match the specified regular expression
Discover Identities
@dm:identity-discovery
Discover identities in the input dataset
Save ML Model
@dm:save-ml-model
Save the ML Model with 'name' and 'model_type'
Load ML Model
@dm:load-ml-model
Load the ML Model with 'name' and 'model_type'
List ML Models
*dm:ml-model-list
List of saved ML Models
Save Stack
@dm:stack-save
Save application Stack specified by 'name'
Load Stack
@dm:stack-load
Load application Stack specified by 'name'
List Stacks
*dm:stack-list
List of application Stacks
Select Nodes in Stack
*dm:stack-select-nodes
Select Nodes from stack based on provided criteria
Impacted Nodes in Stack
*dm:stack-impacted-nodes
Impact Analysis on previously selected Nodes on stack
Filter Nodes in Stack
*dm:stack-filter
Filter stack Nodes/Edges based on previously selected Nodes/Edges on stack
Enrich using Rules Dictionary
@dm:enrich-using-rule-dict
Enrich using rule based dictionary which contains 'rule' column
Skip Block
@dm:skip-block-if-shape
Skip rest of the current block if input dataframe shape meets criteria expressed using 'row_count' & 'column_count'
Skip Pipeline
@dm:skip-pipeline-if-shape
Skip rest of the pipeline if input dataframe shape meets criteria expressed using 'row_count' & 'column_count'
Check Columns
@dm:check-columns
Check input columns for specific list of coumns that must exist or must not exist and take an action
Stats of a Metric
@dm:metric-statistical-analysis
Computes all statistical parameters for each metric
CMDB Child to Parent
@dm:relations-child-to-parent-paths
Traverse CMDB relationship like table to identify all possible paths from each child to all parent node(s)
CMDB Find Impacted Nodes
@dm:find-affected-child-nodes
Traverse CMDB relationship like table to identify potentially affected child nodes for each parent node
CMDB Parent to Child
@dm:relations-parent-to-children-paths
Traverse CMDB relationship like table to identify all possible paths from each parent to all child node(s)
Generate Stack
@dm:stack-generate
Generate stack from input topology dataset
Create Stack
@dm:stack-create
Create stack from input topology dataset
Join Stacks
@dm:stack-join
Create stack from input topology dataset
Stack Topology
@dm:stack-topology
Create stack from input stack
Convert XML to JSON
@dm:xml-to-json
Parse XML document in a specified column and convert it into JSON
Cisco UCS Blade/Rack Server Summary
*cisco-intersight:ucs-server-summary
Cisco UCS Blade/Rack Server Summary
Cisco UCS Blade/Rack Server Contract Status
*cisco-intersight:ucs-contract-status
Cisco UCS Blade/Rack Server Contract Status
Cisco UCS Alarms
*cisco-intersight:ucs-alarms
Cisco UCS Alarms
Cisco UCS Firmware Details
*cisco-intersight:ucs-fw-inventory
Cisco UCS Firmware Details
Cisco UCS Storage Inventory
*cisco-intersight:ucs-server-storage-inventory
Cisco UCS Storage Inventory
Cisco UCS HBA Inventory
*cisco-intersight:ucs-server-hba-inventory
Cisco UCS HBA Inventory
Cisco UCS Network Inventory
*cisco-intersight:ucs-server-network-inventory
Cisco UCS Network Inventory
Cisco UCS Memory Inventory
*cisco-intersight:ucs-server-memory-inventory
Cisco UCS Memory Inventory
Cisco UCS CPU Inventory
*cisco-intersight:ucs-server-cpu-inventory
Cisco UCS CPU Inventory
Cisco UCS Fabric Interconnect Overview
*cisco-intersight:ucs-fi-summary
Cisco UCS Fabric Interconnect Overview
Cisco UCS Fabric Interconnect Ethernet Ports
*cisco-intersight:ucs-fi-eth-port-inventory
Cisco UCS Fabric Interconnect Ethernet Ports
Cisco UCS Fabric Interconnect FC Ports
*cisco-intersight:ucs-fi-fc-port-inventory
Cisco UCS Fabric Interconnect FC Ports
Cisco UCS HCL Status Details
*cisco-intersight:ucs-hcl-status-details
Cisco UCS HCL Status Details
Cisco UCS I/O Modules Inventory
*cisco-intersight:ucs-iom-inventory
Cisco UCS I/O Modules Inventory
Cisco UCS C-Series CPU Inventory
@cisco-ucs-cimc:server-cpu-inventory
Cisco UCS C-Series CPU Inventory
Cisco UCS C-Series Memory Inventory
@cisco-ucs-cimc:server-memory-inventory
Cisco UCS C-Series Memory Inventory
Cisco UCS C-Series Network Inventory
@cisco-ucs-cimc:server-network-inventory
Cisco UCS C-Series Network Inventory
Cisco Meraki Networks
*cisco-meraki:networks
Cisco Meraki Networks
Cisco Meraki Network Devices
*cisco-meraki:network-devices
Cisco Meraki Network Devices
Cisco Meraki Network Clients
*cisco-meraki:network-clients
Cisco Meraki Network Clients
Data Network Write Stream
@dn:write-stream
Write data to specified stream in the data network
NATS Write Stream Data
@nats:write-stream-data
Wrte each row as a message, with subject and data columns to NATS
NATS Request/Reply
@nats:requests
Wrte each row as a request, with subject and data columns to NATS. Output response in a 'response' column
NATS Statistics/Metrics
@nats-stats:get-stats
Get NATS Statistics as specified by the 'type' parameter
Data Network Read Stream
@dn:read-stream
Read data from specified stream in the data network. This bot impements an infinite loop for receiving the data.
Data Network Poll Stream
@dn:poll-stream
Poll for data from specified stream in the data network. This bot usually used inside a loop.
Dynatrace Alerts
@dynatrace:dynatrace-alerts
List all Problems in dynatrace
Dynatrace Hosts
*dynatrace:dynatrace-hosts
List all hosts in dynatrace
Dynatrace Processes
*dynatrace:dynatrace-processes
List all processes in dynatrace
Dynatrace Process Groups
*dynatrace:dynatrace-process-groups
List all process groups in dynatrace
Dynatrace Applications
*dynatrace:dynatrace-applications
List all applications in dynatrace
Dynatrace Services
*dynatrace:dynatrace-services
List all services in dynatrace
Dynatrace Metrics
*dynatrace:dynatrace-metrics
List all metrics in dynatrace
Dynatrace Containers
*dynatrace:dynatrace-containers
List all Containers in dynatrace
Dynatrace Entity Types
*dynatrace:dynatrace-entity-types
List all entity types in dynatrace
Dynatrace Entity Info
@dynatrace:dynatrace-entity-info
List entity information in dynatrace
Dynatrace Metric Data
@dynatrace:dynatrace-metric-data
List all metric data in dynatrace
Zabbix - Host Inventory
*zabbix:zabbix-hosts
Get Zabbix - Host Inventory
Zabbix - Host Group Inventory
*zabbix:zabbix-hostgroups
Get Zabbix - Host Group Inventory
Zabbix - Metrics list
*zabbix:zabbix-metrics-list
Get Zabbix - Metrics list
Zabbix - Metric data
@zabbix:zabbix-metrics-data
Get Zabbix - Metric data
Zabbix - Alerts
@zabbix:zabbix-alerts
Get Zabbix - Alerts
OpenStack Flavors
@openstack:flavors
OpenStack Flavors
Openstack Hypervisors
@openstack:hypervisors
List of hypervisors Configured
Openstack Servers
@openstack:servers
List of Servers Configured
Openstack Services
@openstack:services
List of Services Configured
Openstack Networks
@openstack:networks
List of Networks Configured
Openstack Server Volumes
@openstack:server-volumes
List of Services Configured
MySQL Alerts History
#mysql-alerts:alert-history
Retrieve MySQL Table Alerts History
Redfish - Server Chassis Inventory
@redfish:server-chassis-inventory
Redfish - Server Chassis Inventory
Redfish - Server Storage Inventory
@redfish:server-storage-inventory
Redfish - Server Storage Inventory
Redfish - Server Network Inventory
@redfish:server-network-inventory
Redfish - Server Network Inventory
Redfish - Server PCI Cards Inventory
@redfish:server-pci-inventory
Redfish - Server PCI Cards Inventory
Redfish - Server CPU Inventory
@redfish:server-cpu-inventory
Redfish - Server CPU Inventory
Redfish - Server Memory Inventory
@redfish:server-memory-inventory
Redfish - Server Memory Inventory
REST API Read Bulk
@restclient:read-bulk
Read data using REST Client with the parameters provided in the input dataset
VMware vCenter Alarms
*vc:vcenter-alarms
Get VMware vCenter Alarms
VMware ESX Host Networks
*vc:host-networks
Get VMware ESX Host Networks
VMware ESX Host Storage Adapters
*vc:host-storage-adapters
Get VMware ESX Host Storage Adapters
cfxDimensions List Datasets
*dimensions_bulk:list-datasets
List bots asccoiated with Dimensions platform Datasets
cfxDimensions Bulk Download
@dimensions_bulk:download
Download dataset from Dimensions for a specified dataset bot
HubSpot CRM Data
@hubspot:get-crm-data
Get CRM Data
Kiali/istio Graph
@istio:graph
Generate service mesh Kiali/istio Graph
MQTT Publish json
@mqtt:publish-as-json
Publish each input row as JSON encoded message to a specified topic
MQTT Publish Messages
@mqtt:publish-messages
Publish each row as a message with 'topic' column and 'payload' column. If payload column is a dict, it will be encoded as JSON.
MQTT Subscribe
@mqtt:subscribe-stream
Subscribe to a topic or topics and read messages as a stream
MQTT Simulate IOT Sensors
@mqtt:simulate-iot-sensors
Simulate IoT Sensor telemetry data publication tothe MQTT broker. Input template describes sensors and locations involved in the simulation.
RDA Installed Libraries
*rda:installed-libraries
List all installed libraries on the RDA System
RDA Installed Modules
*rda:installed-modules
List all installed modules on the RDA System
RDA License Status
@rda:license-status
Get license status of RDA system as a single row
Slack Post Message
@slack:post-message-to-channel
Post a message specified Slack channel for each input row
SMTP Send Data
@smtp:sendmail-data
Upload dataframe to email recipient
SMTP Send Message
@smtp:sendmail-message
Send an email to the recipient
SMTP Send Bulk Mail
@smtp:sendmail-bulk
Send one email per row with 'recipient', 'subject', 'message' columns
Worker Execute
@worker:execute
Execute the command on the worker node and get status, output and errors
Worker Write Data
@worker:write-data
Write the input dataframe to worker node with specified filename
Worker Write Files
@worker:write-files
Write each input row as file on worker node. Expects 'filename' and 'data' columns
Worker Read Data
@worker:read-data
Read dataframe from worker node with specified filename
Worker Read File
@worker:read-file
Read a single file form worker node
Worker Read Directory
@worker:read-directory
Read multiple files from a given directory on worker node
Worker Git Pull Code
@worker:git-pull-code
Pull latest code from GIT Repository
Convert to Kubernetes App
@worker:convert-to-k8s-app
Convert Docker to Kubernetes for demoapp1
Kubernetes Get Pods
@worker:k8s-get-pods
Get all active Pods from the Kubernetes system
Kubernetes Deploy App
@worker:k8s-deploy-app
Deploy app1 to the Kubernetes system
Kubernetes Expose App
@worker:k8s-expose-app
Expose Services from App to Load Balancer
Kubernetes Get Public IP
@worker:k8s-get-public-ip-app
Get public IP or Hostname for App
Kubernetes Get Logs
@worker:k8s-get-logs-app
Get logs for App
Kubernetes Delete App
@worker:k8s-delete-app
Delete app deployment from Kubernetes
Cisco ACI POD Data
*cisco-aci:apic-fabric-pod
APIC fabric pod data
Cisco ACI Node Data
*cisco-aci:apic-fabric-node
APIC fabric node data
Cisco ACI Node Chassis
*cisco-aci:apic-fabric-node-chassis
APIC fabric node chassis
Cisco ACI Node Equipments
*cisco-aci:apic-fabric-node-equipment
APIC fabric node equipments
Cisco ACI Node Interface
*cisco-aci:apic-fabric-node-interface
Get APIC fabric node interface
Cisco ACI Node VLANs
*cisco-aci:apic-fabric-node-vLANs
Get APIC fabric node vLANs
Cisco ACI Node CDP
*cisco-aci:apic-fabric-node-cdp
Get APIC fabric node CDP
Cisco ACI Node Topology
*cisco-aci:apic-fabric-node-topology
Retrieve APIC fabric node topology
Cisco ACI Tenants
*cisco-aci:apic-tenants
List APIC tenants
Cisco ACI Tenants App Profiles
*cisco-aci:apic-tenants-application-profiles
Get APIC tenants application profiles
Cisco ACI Tenants Bridge Domain
*cisco-aci:apic-tenants-networking-bridge-domain
Get APIC tenants networking bridge domain
Cisco ACI Tenants L3-outs
*cisco-aci:apic-tenants-networking-l3outs
Get APIC tenants networking l3outs
Cisco ACI Tenants VRFs
*cisco-aci:apic-tenants-networking-vrfs
List APIC tenants networking vrfs
Create Peristent Stream
@dm:create-persistent-stream
Create a persistent stream
Create Log Archive Repository
@dm:create-logarchive-repo
Create a log archive repository
Save logs to Log Archive
@dm:logarchive-save
Save data to log archive
Replay Data from Log Archive
@dm:logarchive-replay
Replay data from log archive
Advanced Log Alerting and Filtering
@dm:apply-alert-rules
Apply alert rules for advanced log alerts and filtering
VMware vCenter Networks
*vc:host-networks
VMware ESX Host Networks
VMware vCenter Storageadapters
*vc:host-storage-adapters
VMware ESX Host Storage Adapters
Arista BigSwitch Fabric Summary
@bigswitch:fabric-summary
Collects fabric summary
Arista BigSwitch Switches
@bigswitch:switches
Collects Switches
Arista BigSwitch Switch all Versions
@bigswitch:switch-all-versions
Run show switch all versions
Arista BigSwitch Link
@bigswitch:show-links
Run show link
Arista BigSwitch Switch all Interface
@bigswitch:switch-all-ifs
Run show switch all interface
Arista BigSwitch Switch Details
@bigswitch:switch-details
Run show switch details
Arista BigSwitch Swith Inventory
@bigswitch:switch-inventory
Run show switch inventory
Arista BigSwitch Swithch Management Ip
@bigswitch:switch-mgmt-ips
Run show switch management-ip
Arista BigSwitch Show endpoint
@bigswitch:show-endpoint
Run show endpoint
Arista BigSwitch Show tenant
@bigswitch:show-tenant
Run show tenant
IBM AIX System Information
@ibm-aix:system-info
Collects System Info through prtconf, oslevel and uname
IBM AIX Network Configuration
@ibm-aix:network-config
Collects Network Configuration Information
IBM AIX Netstat
@ibm-aix:netstat
Collects Netstat Information
IBM AIX lsmpio -ql Information
@ibm-aix:lsmpio-ql
Collects lsmpio -ql Information
IBM AIX Service Information
@ibm-aix:services
Collects Services Information
IBM AIX Disks
@ibm-aix:disks
Show Mount point / disk usage output
IBM AIX lsmpio Information
@ibm-aix:lsmpio
Collects lsmpio Information
IBM AIX lsmpio -ar Information
@ibm-aix:lsmpio-ar
Collects lsmpio -ar Information
IBM AIX lslpp -L all Information
@ibm-aix:software-packages
Collects lslpp -L all Information
Dell EMC XtremIO Alerts
@emc-xtremio:alerts
List all alerts in EMC XtremIO Storage Array
Dell EMC XtremIO Volumes
@emc-xtremio:volumes
List all Volumes in EMC XtremIO Storage Array
Dell EMC XtremIO Storate Controllers
@emc-xtremio:storage-controllers
List all Storage Controllers in EMC XtremIO Storage Array
Dell EMC XtremIO Storate Controller PSUs
@emc-xtremio:storage-controller-psus
List all Storage Controllers PSUs in EMC XtremIO Storage Array
Dell EMC XtremIO SSDs
@emc-xtremio:ssds
List all SSDs in EMC XtremIO Storage Array
Dell EMC XtremIO Slots
@emc-xtremio:slots
List all Slots in EMC XtremIO Storage Array
Dell EMC XtremIO LUN Maps
@emc-xtremio:lun-maps
Lists LUN Mappings between Volumes and Initiator Groups in EMC XtremIO Storage Array
Dell EMC XtremIO NVRAMs
@emc-xtremio:nvrams
List all nvrams in EMC XtremIO Storage Array
Dell EMC XtremIO Local Disks
@emc-xtremio:local-disks
List all Local Disks in EMC XtremIO Storage Array
Dell EMC XtremIO LDAP Configs
@emc-xtremio:ldap-configs
List all LDAP Configurations in EMC XtremIO Storage Array
Dell EMC XtremIO ISCSI Routes
@emc-xtremio:iscsi-routes
List all ISCSI Routes in EMC XtremIO Storage Array
Dell EMC XtremIO ISCSI Portals
@emc-xtremio:iscsi-portals
List all ISCSI Portals in EMC XtremIO Storage Array
Dell EMC XtremIO Initiators
@emc-xtremio:initiators
List all Initiators in EMC XtremIO Storage Array
Dell EMC XtremIO Initiator Groups
@emc-xtremio:initiator-groups
List all Initiator Groups in EMC XtremIO Storage Array
Dell EMC XtremIO Events
@emc-xtremio:events
List all Events in EMC XtremIO Storage Array
Dell EMC XtremIO Data Protection Groups
@emc-xtremio:data-protection-groups
List all Data protection Groups in EMC XtremIO Storage Array
Dell EMC XtremIO Clusters
@emc-xtremio:clusters
List all Clusters in EMC XtremIO Storage Array
Dell EMC XtremIO Consistency Group Volumes
@emc-xtremio:consistency-group-volumes
List all consistency group volumes in EMC XtremIO Storage Array
Dell EMC XtremIO Consistency Groups
@emc-xtremio:consistency-groups
List all consistency groups in EMC XtremIO Storage Array
Dell EMC XtremIO DAE Controllers
@emc-xtremio:dae-controllers
List all DAE Controllers in EMC XtremIO Storage Array
Dell EMC XtremIO DAE PSUs
@emc-xtremio:dae-psus
List all DAE PSUs in EMC XtremIO Storage Array
Dell EMC XtremIO DAE
@emc-xtremio:daes
List all DAEs in EMC XtremIO Storage Array
Dell EMC XtremIO Bricks
@emc-xtremio:bricks
List all Bricks in EMC XtremIO Storage Array
Dell EMC XtremIO BBUs
@emc-xtremio:bbus
List all bbus in EMC XtremIO Storage Array
Dell EMC XtremIO Targets
@emc-xtremio:targets
List all targets in EMC XtremIO Storage Array
Dell EMC XtremIO Target Groups
@emc-xtremio:target-groups
List all target groups in EMC XtremIO Storage Array
Dell EMC XtremIO Metrics
@emc-xtremio:metrics
Get performance metrics in EMC XtremIO Storage Array