---
id: infrequent-data-tier
title: Sumo Logic Infrequent Data Tier App
sidebar_label: Infrequent Data Tier
description: The Infrequent Data Tier App provides visibility into usage and costs for data stored in the Infrequent Data Tier through intuitive, preconfigured dashboards and searches.
slug: /help/docs/integrations/sumo-apps/infrequent-data-tier/
canonical: https://www.sumologic.com/help/docs/integrations/sumo-apps/infrequent-data-tier/
---
import useBaseUrl from '@docusaurus/useBaseUrl';
The Sumo Logic app for the Infrequent Data Tier provides visibility into on-demand search usage and associated costs through intuitive, preconfigured dashboards and searches. Infrequent Data Tiers offer an economical, fully managed log analytics solution for high-volume data that is accessed infrequently. This enables you to aggregate, store, and analyze verbose log sources, such as application debug logs, CDN logs, load balancer logs, and other infrequently accessed logs at a significantly lower cost.
With growing adoption of modern application stacks that leverage micro-services and distributed architectures, organizations are generating more and more machine data. A large part of this data is not required for everyday mission-critical operations. However, organizations still need to retain and analyze this data, as it can provide value across multiple groups within a digital enterprise. A cost-efficient solution that manages infrequently used data is currently lacking in the marketplace, forcing customers to either not retain the data or build home-grown solutions that are difficult to maintain, secure, and don’t provide easy access to insights when the enterprise needs it.
## Log types
The Search Audit Index for Infrequent Data Tier App has the following fields:
* analytics_tier
* capacity_used
* daily_capacity
* data_retrieved_bytes
* data_scanned_bytes
* execution_duration_ms
* is_aggregate
* query
* query_end_time
* query_start_time
* query_type
* remote_ip
* retrieved_message_count
* scanned_message_count
* scanned_partition_count
* session_id
* status_me
You can start using the index by using the following query:
```sumo
_index=sumologic_search_usage_per_query \
analytics_tier="Infrequent"
```
### Sample queries
The following query is from the **Data Scanned Over Time** panel of the **Infrequent Cost** dashboard.
```sumo
_index=sumologic_search_usage_per_query analytics_tier = "Infrequent" !(user_name=*sumologic.com) !(status_message="Query Failed")
| fields data_scanned_bytes, query, is_aggregate, query_type, remote_ip, retrieved_message_count, scanned_message_count, scanned_partition_count, session_id, status_message, user_name
|data_scanned_bytes / 1Gi as sizeInGB
| timeslice 1d
| sum (sizeInGB) as total_data_scanned_GB, count as query_count by _timeslice
| fillmissing timeslice (1d)
```
## Prerequisites
:::sumo availability
Sumo Logic Infrequent Data Tier App is only available for Enterprise Suite customers.
| Account Type | Account Level |
| Credits | Enterprise Suite |
You can verify if you already have the Search Audit Index enabled by querying:
```sumo
_index=sumologic_search_usage_per_query
```
If no results are returned even for longer time ranges, it means that the Search Audit index is disabled.
## Installing the Infrequent Data Tier app
### Prerequisite
Enable the `_view = sumologic_search_usage_per_query` index before installation. See [Data Tiers](/docs/manage/partitions/data-tiers/) for instructions.
import AppInstallNoDataSourceV2 from '../../reuse/apps/app-install-index-apps-v2.md';
### Data Scanned by Users
The **Infrequent Data Tier - Data Scanned by Users** dashboard provides insights into the amount of infrequent data scanned by specific users, user trends, and the geographic locations of users.
Use this dashboard to:
* Monitor data scan information by user.
* To analyze trends in data scanned by users over a 30 day period.
* Monitor the geographical locations for data scan information.
### Query Analysis
The **Infrequent Data Tier - Query Analysis** dashboard provides visibility into the Infrequent Data Tier queries that are most expensive, as well as detailed information on the queries.
Use this dashboard to:
* Identify the most expensive queries on the Infrequent Tier.
* Analyze queries executed against Infrequent Tier.
### Credits Consumed
The **Infrequent Data Tier - Credits Consumed** dashboard provides visibility into the total amount of Cloud Flex Credits your organization has consumed with infrequent queries. This allows you to monitor and control on-demand search costs for the Infrequent Tier.
Use this dashboard to:
* Monitor credits consumed per day.
* Monitor credits consumed per user.
* Monitor the geographical locations of credit consumption.
* Identify the most expensive queries on the Infrequent Tier.
## Create monitors for the Sumo Logic Infrequent Data Tier app
import CreateMonitors from '../../reuse/apps/create-monitors.md';