Azure Log Analytics · Arazzo Workflow

Azure Log Analytics Workspace Inventory Report

Version 1.0.0

Resolve a workspace, then list its tables and its saved searches together.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub AnalyticsAzureCloudLoggingMonitoringArazzoWorkflows

Provider

azure-log-analytics

Workflows

workspace-inventory-report
Resolve a workspace and collect its tables and saved searches into a report.
Reads the workspace to confirm it and capture its identifiers, lists all tables on the workspace, and lists all saved searches on the workspace, returning each collection as part of a single inventory output.
3 steps inputs: managementApiVersion, resourceGroupName, subscriptionId, workspaceName outputs: customerId, savedSearches, tables
1
getWorkspace
Read the workspace record to confirm it exists and capture its customer ID and provisioning state for the report header.
2
listTables
List every table defined on the workspace for the inventory report.
3
listSavedSearches
List every saved search stored on the workspace for the inventory report.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Azure Log Analytics Workspace Inventory Report
  summary: Resolve a workspace, then list its tables and its saved searches together.
  description: >-
    A reporting pattern that assembles a single inventory snapshot for a Log
    Analytics workspace. The workflow reads the workspace record, lists every
    table defined on it, and lists every saved search stored on it, so a caller
    can build a consolidated catalog of what the workspace contains. Every step
    spells out its request inline so the flow can be read and executed without
    opening the underlying OpenAPI descriptions.
  version: 1.0.0
sourceDescriptions:
- name: savedSearchesApi
  url: ../openapi/azure-log-analytics-saved-searches-api-openapi.yml
  type: openapi
- name: tablesApi
  url: ../openapi/azure-log-analytics-tables-api-openapi.yml
  type: openapi
- name: workspacesApi
  url: ../openapi/azure-log-analytics-workspaces-api-openapi.yml
  type: openapi
workflows:
- workflowId: workspace-inventory-report
  summary: Resolve a workspace and collect its tables and saved searches into a report.
  description: >-
    Reads the workspace to confirm it and capture its identifiers, lists all
    tables on the workspace, and lists all saved searches on the workspace,
    returning each collection as part of a single inventory output.
  inputs:
    type: object
    required:
    - subscriptionId
    - resourceGroupName
    - workspaceName
    properties:
      subscriptionId:
        type: string
        description: The ID of the target Azure subscription.
      resourceGroupName:
        type: string
        description: The resource group that contains the workspace.
      workspaceName:
        type: string
        description: The management name of the Log Analytics workspace.
      managementApiVersion:
        type: string
        description: The management API version to use.
        default: '2025-02-01'
  steps:
  - stepId: getWorkspace
    description: >-
      Read the workspace record to confirm it exists and capture its customer
      ID and provisioning state for the report header.
    operationId: getWorkspace
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: workspaceName
      in: path
      value: $inputs.workspaceName
    - name: api-version
      in: query
      value: $inputs.managementApiVersion
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      customerId: $response.body#/properties/customerId
      provisioningState: $response.body#/properties/provisioningState
  - stepId: listTables
    description: >-
      List every table defined on the workspace for the inventory report.
    operationId: listTables
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: workspaceName
      in: path
      value: $inputs.workspaceName
    - name: api-version
      in: query
      value: $inputs.managementApiVersion
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      tables: $response.body#/value
  - stepId: listSavedSearches
    description: >-
      List every saved search stored on the workspace for the inventory report.
    operationId: listSavedSearches
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: workspaceName
      in: path
      value: $inputs.workspaceName
    - name: api-version
      in: query
      value: $inputs.managementApiVersion
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      savedSearches: $response.body#/value
  outputs:
    customerId: $steps.getWorkspace.outputs.customerId
    tables: $steps.listTables.outputs.tables
    savedSearches: $steps.listSavedSearches.outputs.savedSearches

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/azure-log-analytics-workspace-inventory-report-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.