Skip to main content

Citrix Cloud Source

citrix-cloud-icon

The Citrix Cloud source collects the system, operation, and session logs using the Citrix Cloud API and Citrix DaaS REST API to Sumo Logic. Citrix Cloud is a workspace management platform for IT administrators to design, deliver, and manage virtual desktops and applications, and other services, such as file sharing, on any device.

note

This source is available in all deployments, including the Fed deployment.

Data collected

Polling IntervalData
5 minSystem Log
5 minItem usage
5 minConfig Operation Log
5 minLow-Level Operation Log
5 minSession Log

Setup

Vendor configuration

Prerequisites

  • The System logs are obtained using the Citrix Cloud API.
    • To collect System logs from the Citrix Cloud platform, you must have an authorized Citrix Cloud account.
    • Citrix Cloud APIs use an OAuth 2.0 authorization token to make authorized API calls.
  • The Operation and Session logs are obtained using the Citrix DaaS REST API.
    • To collect these logs, one needs to have a Citrix Cloud account with the DaaS Service enabled. Make sure this by signing in to the Citrix Cloud platform and checking the home page. Look for the presence of the DaaS service in the My Services section. If it is not listed, then you need to purchase this service to collect the Operation and Session Logs.
      daas-service-enabled

In this configuration, you will set up the Citrix Cloud source account and configure it to be authorized and authenticated to use system logs and alerts from Citrix Cloud API. To obtain the Citrix Cloud auth token, you will need the following parameters:

Base URL

The Base URL is the URL where your Citrix Cloud account is located. To get the base URL, follow the steps below:

  1. Log in to the Citrix Cloud application.
  2. At the top of the browser, you will see the Base URL inside the address bar.
    <citrix-cloud-base-url.png>
  3. Choose the Base URL from the table below. The following table contains the base URLs based on the location of your Citrix Cloud account:
Server locationServer located atBase URLs
US ServerUnited Stateshttps://api-us.cloud.com
APAC ServerAsia Pacific Southhttps://api-ap-s.cloud.com
EU ServerEuropean Unionhttps://api-eu.cloud.com
JP ServerJapanhttps://api.citrixcloud.jp

API client

The API security token is used to authenticate with Citrix Cloud API. After successfully creating the API client, you will get the Client Id, Client Secret, and Customer Id. To get the Citrix Cloud API token, follow the steps below:

  1. From the Citrix Cloud Console, navigate to the <navigation-button.png> menu icon.
  2. Select the Identity and Access Management option from the menu.
    <access-management.png>
    note

    If this option does not appear, you may not have adequate permissions to create an API client. Contact your administrator to get the required permissions.

  3. Select the API Access tab.
    <api-access.png>
  4. Give a name to your Secure Client, and click Create Client.
    <create-client.png>
  5. A dialogue box will appear notifying you that your Client ID and Secret key have been successfully created. You can download or copy and paste the Client Id and Secret key to a folder location because you will need them when creating the Citrix Cloud-to-Cloud Source.
    <successful-credentials.png>
  6. After closing the previous dialogue box, copy and paste the Customer Id, which is written straight above the Create Client button, into a folder. Look at the red highlighted box.
    <customer-id.png>

Source configuration

When you create a Citrix Cloud Source, you add it to a Hosted Collector. Before creating the Source, identify the Hosted Collector you want to use or create a new Hosted Collector. For instructions, see Configure a Hosted Collector.

To configure the Citrix Cloud API:

  1. In Sumo Logic, select Manage Data > Collection > Collection
  2. On the Collectors page, click Add Source next to a Hosted Collector.
  3. Search for and select Citrix Cloud.
  4. Enter a Name to display for the Source in the Sumo Logic web application. The description is optional.
  5. (Optional) For Source Category, enter any string to tag the output collected from the Source. Category metadata is stored in a searchable field called _sourceCategory.
  6. (Optional) Fields. Click the +Add Field link to define the fields you want to associate. Each field needs a name (key) and value.
    • green check circle.png A green circle with a check mark is shown when the field exists in the Fields table schema.
    • orange exclamation point.png An orange triangle with an exclamation point is shown when the field doesn't exist in the Fields table schema. In this case, an option to automatically add the nonexistent fields to the Fields table schema is provided. If a field is sent to Sumo Logic that does not exist in the Fields schema it is ignored, known as dropped.
  7. Base URL. Choose the URL where your Citrix Cloud account is located. See Base URL section to know your base URL.
  8. Customer ID. Enter the Customer ID you generated and secured from the API Client section in step 6.
  9. Client ID. Enter the Client ID you generated and secured from the API Client section in step 5.
  10. Client Secret. Authenticate your account by entering your Secret API key. Enter the Secret key you have generated and secured from API Client section in step 5.
  11. Supported APIs to Collect. Select any or all of the data sources such as System Logs, Operation Logs, Monitor Data Session Logs. By default, the System Logs data source will be selected.
  12. When you are finished configuring the Source, click Save.

Metadata fields

If the integration is configured with the SIEM forward option, set the Metadata field _siemparser to /Parsers/System/Citrix/Citrix Cloud C2C.

note

Session logs are not supported with the SIEM forward option.

JSON schema

Sources can be configured using UTF-8 encoded JSON files with the Collector Management API. See how to use JSON to configure Sources for details. 

ParameterTypeValueRequiredDescription
schemaRefJSON Object{"type":"Citrix Cloud"}YesDefine the specific schema type.
sourceTypeString"Universal"YesType of source.
configJSON ObjectConfiguration objectYesSource type specific values.

Configuration Object

ParameterTypeRequiredDefaultDescriptionExample
nameStringYesnullType a desired name of the source. The name must be unique per Collector. This value is assigned to the metadata field _source."mySource"
descriptionStringNonullType a description of the source."Testing source"
categoryStringNonullType a category of the source. This value is assigned to the metadata field _sourceCategory. See best practices for details."mySource/test"
fieldsJSON ObjectNonullJSON map of key-value fields (metadata) to apply to the Collector or Source. Use the boolean field _siemForward to enable forwarding to SIEM.{"_siemForward": false, "fieldA": "valueA"}
baseURLStringYesnullRegion URL of the Citrix Cloud application.
customerIDStringYesnullCustomer ID of the environment.
clientIDStringYesnullClient ID for the API client.
clientSecretStringYesnullClient Secret for the API client.
supportedAPIArrayYesSelect any of the given data sources or all the data sources, such as System Logs, Operation Logs, Monitor Data Session Logs.

JSON example

{
"api.version": "v1",
"source": {
"config": {
"name": "Citrix Cloud Source",
"description": "Description",
"category": "Source Category",
"baseUrl": "https://api-us.cloud.com",
"customerId":"customer_id",
"clientId":"client_id",
"clientSecret":"client_secret",
"supportedAPIs":[
"systemLogs",
"operationLogs",
"sessionLogs"
],
"fields":{
"_siemForward":false
}
},
"schemaRef":{
"type":"Citrix Cloud"
},
"sourceType":"Universal"
}
}

Download example

Terraform example

resource "sumologic_cloud_to_cloud_source" "citrix_cloud_source" {
collector_id = sumologic_collector.collector.id
schema_ref = {
type = "Citrix Cloud"
}
config = jsonencode({
"name": "Citrix Cloud Source",
"description": "Description",
"category": "Source Category",
"baseUrl": "https://api-us.cloud.com",
"customerId":"customer_id",
"clientId":"client_id",
"clientSecret":"client_secret",
"supportedAPIs":[
"systemLogs",
"operationLogs",
"sessionLogs"
],
"fields":{
"_siemForward":false
}
})
}
resource "sumologic_collector" "collector" {
name = "my-collector"
description = "Just testing this"
}

Download example

Troubleshooting

This section provides information on how to troubleshoot failures while configuring our Citrix Cloud Source.

Authentication API error

Error message

{
"error": "invalid_client",
"error_description": "Invalid client id or client secret."
}

Solution

Make sure that you have used the correct baseURL, clientId, and clientSecret while configure the source.

System Logs API errors

Error message

{
"statusCode": 500,
"message": "Internal server error",
"activityId": "XXXXXX"
}

Solution

Make sure that you have used the correct baseURL is used to configure the source.

Error message

{
"type": "https://errors-api.cloud.com/common/authentication",
"detail":"Missing or invalid authentication details",
"parameters": [
{
"name":"reason","value": "invalid"
}
]
}

Solution

Make sure that you have used the correct customerId is used to configure the source.

SiteID, Operation Logs, and Low-Level Operation Logs API error

Error message

{
"statusCode": 500,
"message": "Internal server error",
"activityId": "XXXXXX"
}

Solution

  • Make sure that you have used the correct customerId and baseURL are used to configure the source.
  • Make sure that the provided customerId has the DaaS Service enabled. Refer Prerequisites section.

Session Logs API error

Error message

Access denied to query Monitor objects : Invalid Customer.

Solution

  • Make sure that the correct customerId and baseURL are used to configure the source.
  • Make sure that the provided customerId has the DaaS Service enabled. Refer Prerequisites section.

FAQ

info

Click here for more information about Cloud-to-Cloud sources.

Status
Legal
Privacy Statement
Terms of Use

Copyright © 2024 by Sumo Logic, Inc.