> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kubex.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

export const ContentWrapper = ({src, href, children}) => {
  return <div className="grid grid-cols-1 md:grid-cols-3 gap-6 items-start">
      <div className="md:col-span-1 flex justify-center">
        <div className="overflow-hidden">
          {href ? <a href={href} className="inline-block no-underline border-b-0" target="_blank" rel="noopener noreferrer">
              <img src={src} alt="" className="max-w-full h-auto" />
            </a> : <img src={src} alt="" className="max-w-full h-auto" />}
        </div>
      </div>

      <div className="md:col-span-2">
        {children}
      </div>
    </div>;
};

export const InlineImageWithText = ({src, href, children, width = 80, caption}) => {
  return <span className="inline-flex items-center gap-3 align-middle">
            <a href={href} className="inline-block border-b-0">
                <Frame caption={caption}>
                    <img src={src} alt="" className="object-contain align-middle " width={width} style={{
    minWidth: width
  }} />
                </Frame>
            </a>
            <span className="align-middle">{children}</span>
        </span>;
};

## Initiating Container Data Collection

<ContentWrapper src="/images/docs-kubex\Content\Kubex/03000115.png">
  The Kubex data collector is a container that collects data from Kubernetes using the Prometheus server and then forwards that data to Kubex.<br />

  <br />

  Refer to <a href="/docs-kubex/Content/Kubex/Data_Collection_Overview">Data Collection Overview</a> to get the Helm commands to deploy the data collector.

  <br />

  You can also go directly to the GitHub page:  <a href="https://github.com/densify-dev/helm-charts/tree/master/charts/kubex-automation-stack">Kubex Collection Stack Helm Chart</a>.<br />

  <br />

  Other configuration options including multi-cluster and observability platforms are also supported. See <a href="/docs-kubex/Content/Kubex/Data_Collection_Alternate_Methods" xrefformat="{u}{paratext}{/u}">Data Collection for Containers</a> or <a href="https://github.com/densify-dev/container-data-collection/blob/main/requirements.md#data-source">Github</a> for other configuration options.
</ContentWrapper>

## Viewing and Managing Your Kubernetes Environments

<ContentWrapper href="https://kubex.ai/resources/video-densify-kubex-demo-product-tour/" src="/images/docs-kubex\Content\Kubex/03000174.png">
  Watch a <a href="https://kubex.ai/resources/video-densify-kubex-demo-product-tour/">walk-through</a> with specific use cases to learn how Kubex can help optimize your Kubernetes environments.<br />

  <br />

  The <a href="/docs-kubex/Content/Kubex/Kubex_Dashboard">Kubernetes dashboard</a> provides a high-level summary of cluster resources, workload usage, costs, and potential risks.

  Explore your <a href="/docs-kubex/Content/Kubex/Containers_Analysis">Containers</a> and the <a href="/docs-kubex/Content/Kubex/Node_Group_Analysis">Nodes</a> that host the container to better understand how resources are being used and how to optimize them.<br />

  <br />

  Take a guided <a href="/docs-kubex/Content/Kubex/Visualizing_Your_Data#tour">tour</a> through the significant features and find out how to view and optimize your container environments.<br />
</ContentWrapper>
