Skip to content

Commit

Permalink
feature page on metrics and dashboards (#658)
Browse files Browse the repository at this point in the history
Co-authored-by: ankit01-oss <>
  • Loading branch information
ankit01-oss authored Aug 21, 2024
1 parent e10bdc3 commit 6384478
Show file tree
Hide file tree
Showing 13 changed files with 575 additions and 5 deletions.
7 changes: 5 additions & 2 deletions app/distributed-tracing/DistributedTracing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ const SigNozFeatures = () => {
image: "/img/features/distributed-tracing/trace-query-builder.webp",
},
{
title: 'Different Compact views',
title: 'Different Compact Views',
desc: "See your trace data in different views based on your use cases, like list view, root spans, time series, and table view.",
image: "/img/features/distributed-tracing/traces-time-series.webp",
buttonText: 'Learn More',
Expand All @@ -286,10 +286,13 @@ const SigNozFeatures = () => {
},
{
title: 'Access to Trace data through API',
desc: "Accessing trace data efficiently through our Trace API allows you to manage and analyze it efficiently. This opens up many opportunities for integration with other tools, programmatic analysis of trace data, and customized data handling, enhancing overall observability and operational efficiency.",
desc: "Accessing trace data through our Trace API allows you to manage and analyze it efficiently. This opens up many opportunities for integration with other tools, programmatic analysis of trace data, and customized data handling.",
buttonText: 'Learn More',
buttonLink: 'https://signoz.io/docs/traces-management/trace-api/overview/',
},
{

}
]
return (
<>
Expand Down
6 changes: 3 additions & 3 deletions app/distributed-tracing/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import Apm from './DistributedTracing'
import DistributedTracing from './DistributedTracing'
import { Metadata } from 'next'

export const metadata: Metadata = {
Expand All @@ -20,6 +20,6 @@ export const metadata: Metadata = {
}
}

export default function apmPage() {
return <Apm />
export default function Page() {
return <DistributedTracing />
}
538 changes: 538 additions & 0 deletions app/metrics-and-dashboards/MetricsDashboards.tsx

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions app/metrics-and-dashboards/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import React from 'react'
import MetricsDashboards from './MetricsDashboards'
import { Metadata } from 'next'

export const metadata: Metadata = {
title: {
absolute: 'Metrics & Dashboards | SigNoz',
},
openGraph: {
title: 'Metrics & Dashboards | SigNoz',
description: 'Monitor any metrics important to you. Ingest metrics from your infrastructure or applications and create customized dashboards to monitor them. Set alerts and get notified in your preferred notification channel.',
images:"/img/platform/LogsManagementHero.webp"
},
description:
'Monitor any metrics important to you. Ingest metrics from your infrastructure or applications and create customized dashboards to monitor them. Set alerts and get notified in your preferred notification channel.',
twitter:{
title: 'Metrics & Dashboards | SigNoz',
description: 'Monitor any metrics important to you. Ingest metrics from your infrastructure or applications and create customized dashboards to monitor them. Set alerts and get notified in your preferred notification channel.',
images:"/img/platform/LogsManagementHero.webp",
}
}

export default function MetricsDashboardsPage() {
return <MetricsDashboards />
}
4 changes: 4 additions & 0 deletions public/img/features/metrics/blocks.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file added public/img/features/metrics/metrics-overview.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 6384478

Please sign in to comment.