|
| 1 | +export const organisationSchema = { |
| 2 | + '@context': 'https://schema.org', |
| 3 | + '@type': 'Organization', |
| 4 | + name: 'OpenLIT', |
| 5 | + url: 'https://openlit.io', |
| 6 | + logo: 'https://openlit.io/static/images/logo.png', |
| 7 | + description: |
| 8 | + 'OpenLIT is an open-source platform built on OpenTelemetry, providing observability for GenAI and LLM applications.', |
| 9 | + sameAs: [ |
| 10 | + 'https://x.com/openlit_io', |
| 11 | + 'https://github.com/openlit/openlit', |
| 12 | + 'https://linkedin.com/company/openlit', |
| 13 | + ], |
| 14 | + foundingDate: '2023', |
| 15 | + founders: [ |
| 16 | + { |
| 17 | + '@type': 'Person', |
| 18 | + name: 'Aman Agarwal', |
| 19 | + }, |
| 20 | + ], |
| 21 | +} |
| 22 | + |
| 23 | +export const applicationSchema = { |
| 24 | + '@context': 'https://schema.org', |
| 25 | + '@type': 'SoftwareApplication', |
| 26 | + name: 'OpenLIT', |
| 27 | + operatingSystem: 'Linux, Windows, macOS', |
| 28 | + applicationCategory: 'Observability Platform', |
| 29 | + description: |
| 30 | + 'Open-source platform for observability and application performance monitoring (APM) built on OpenTelemetry, optimized for GenAI and LLM applications.', |
| 31 | + offers: { |
| 32 | + '@type': 'Offer', |
| 33 | + price: '0', |
| 34 | + priceCurrency: 'USD', |
| 35 | + category: 'Free Software', |
| 36 | + }, |
| 37 | + url: 'https://openlit.io', |
| 38 | + downloadUrl: 'https://github.com/openlit/openlit/pkgs/container/openlit', |
| 39 | + featureList: [ |
| 40 | + 'Unified Traces and Metrics', |
| 41 | + 'OpenTelemetry Support', |
| 42 | + 'LLM Observability', |
| 43 | + 'Developer-Friendly Interface', |
| 44 | + ], |
| 45 | +} |
| 46 | + |
| 47 | +export const faqSchema = { |
| 48 | + '@context': 'https://schema.org', |
| 49 | + '@type': 'FAQPage', |
| 50 | + mainEntity: [ |
| 51 | + { |
| 52 | + '@type': 'Question', |
| 53 | + name: 'What is OpenLIT?', |
| 54 | + acceptedAnswer: { |
| 55 | + '@type': 'Answer', |
| 56 | + text: 'OpenLIT is an open-source platform that provides observability and application performance monitoring for GenAI and LLM applications using OpenTelemetry.', |
| 57 | + }, |
| 58 | + }, |
| 59 | + { |
| 60 | + '@type': 'Question', |
| 61 | + name: 'Is OpenLIT free to use?', |
| 62 | + acceptedAnswer: { |
| 63 | + '@type': 'Answer', |
| 64 | + text: 'Yes, OpenLIT is open-source and free to use for developers and organizations.', |
| 65 | + }, |
| 66 | + }, |
| 67 | + ], |
| 68 | +} |
| 69 | + |
| 70 | +export const webpageSchema = { |
| 71 | + '@context': 'https://schema.org', |
| 72 | + '@type': 'WebPage', |
| 73 | + name: 'OpenLIT - OpenTelemetry-Native Observability Platform', |
| 74 | + url: 'https://openlit.io', |
| 75 | + description: |
| 76 | + 'OpenLIT is an open-source platform for observability and APM. Built on OpenTelemetry, it provides seamless monitoring for GenAI and LLM applications.', |
| 77 | + breadcrumb: { |
| 78 | + '@type': 'BreadcrumbList', |
| 79 | + itemListElement: [ |
| 80 | + { |
| 81 | + '@type': 'ListItem', |
| 82 | + position: 1, |
| 83 | + name: 'Home', |
| 84 | + item: 'https://openlit.io', |
| 85 | + }, |
| 86 | + { |
| 87 | + '@type': 'ListItem', |
| 88 | + position: 2, |
| 89 | + name: 'Docs', |
| 90 | + item: 'https://docs.openlit.io/latest/introduction', |
| 91 | + }, |
| 92 | + { |
| 93 | + '@type': 'ListItem', |
| 94 | + position: 3, |
| 95 | + name: 'Blogs', |
| 96 | + item: 'https://openlit.io/blogs', |
| 97 | + }, |
| 98 | + ], |
| 99 | + }, |
| 100 | +} |
0 commit comments