Skip to content

Fix Elasticsearch tutorial image rendering #12050

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/my-website/docs/tutorials/elasticsearch_logging.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import Image from '@theme/IdealImage';
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

# Elasticsearch Logging with LiteLLM

Send your LLM requests, responses, costs, and performance data to Elasticsearch for analytics and monitoring using OpenTelemetry.

![Elasticsearch Demo](../../img/elasticsearch_demo.png)
<Image img={require('../../img/elasticsearch_demo.png')} />

## Quick Start

Expand Down Expand Up @@ -179,7 +180,7 @@ docker run -d --name kibana --link elasticsearch:elasticsearch -p 5601:5601 dock

Open Kibana at http://localhost:5601 and create an index pattern for your LiteLLM traces:

![Elasticsearch Demo](../../img/elasticsearch_demo.png)
<Image img={require('../../img/elasticsearch_demo.png')} />

## Production Setup

Expand Down
Loading