Documentation

{{docApp.title}}

{{docApp.description}}

Connect an AI assistant

Your AI assistant can read this documentation directly, so it answers from the current content instead of guessing. Add one of the servers below to your client — they use the Model Context Protocol (MCP). Each one covers a different body of content, so add the one you need.

The catalog did not load. Refresh the page to try again.

Loading…

How can we help?

{{docApp.searchError}}

Searching in {{docApp.searchFilterBySpecificBookTitle}}

 {{docApp.currentResultsSearchText}}  in {{docApp.searchFilterBySpecificBookTitle}}
Found {{docApp.searchResponse.totalResultsAvailable}} matches. Showing the top {{docApp.searchResponse.results ? docApp.searchResponse.results.length : 0}}. Use a more specific search to further narrow down the results.
No documentation pages match this search, so all content types are shown. Most matches are in {{docApp.searchDocTypeRescue.best.name}}.
There is no book with the ID "{{docApp.searchBookRescue.bid}}", so the book filter from this link was ignored and results from all books are shown.

You have an odd number of " characters in your search terms - each one needs closing with a matching " character!
  • {{resultItem.title}} {{resultItem.matchedBy === 'semantic' ? 'semantic' : (resultItem.matchedBy === 'both' ? 'keyword + semantic' : 'keyword')}}

    {{resultItem.url}}

{{docApp.libraryHomeViewProduct.title || docApp.libraryHomeViewProduct.id}}

{{docApp.libraryHomeViewProduct.description}}

  1. {{book.title}}

Configuration Example - Manage Engine

The following is an example of the SourceConfig, AssetTypes and data mapping configuration that could be used to import Devices and software assets from Manage Engine.

Important

The configuration example is provided as-is, and may not be suitable to import your organization’s Manage Engine asset data. We highly recommend that a Manage Engine administrator review the query and mappings against your Manage Engine account before using this in a production environment.

For Devices and Software Assests:

{
  "KeysafeKeyID": 0,
  "LogSizeBytes": 1000000,
  "HornbillUserIDColumn": "h_user_id",
  "SourceConfig": {
    "Source": "manageengine",
    "ManageEngine": {
      "Query": ""
    }
  },
  "AssetTypes": [
    {
      "AssetType": "Desktop",
      "OperationType": "both",
      "PreserveShared": false,
      "Query": "",
      "AssetIdentifier": {
        "SourceColumn": "{{.resource_id | int}}",
        "Entity": "AssetsSoftware",
        "EntityColumn": "h_name"
      },
      "SoftwareInventory": {
        "AppIDColumn": "{{.software_id | int}}",
        "Query": "",
        "Mapping": {
          "h_app_id": "{{.software_id | int}}",
          "h_app_name": "{{.software_name}}",
          "h_app_vendor": "{{.manufacturer_name}}",
          "h_app_version": "{{.software_version}}",
          "h_app_install_date": "{{.installed_date}}",
          "h_app_help": "",
          "h_app_info": ""
        }
      }
    }
  ],
  "AssetGenericFieldMapping": {
    "h_name": "{{.resource_id | int}}",
    "h_asset_tag": "{{.installed_format}}",
    "h_description": "From Manage Engine: {{.resource_name}} {{(index .software 0).software_name}}"
  },
  "AssetTypeFieldMapping": {
    "h_name": "{{.resource_id | int}}",
    "h_description": "From Manage Engine: ({{.resource_name}}) ({{.manufacturer_name}})"
  }
}
In This Document