import React, { useEffect, useState } from "react"; import { Form, Input, Space } from "antd"; import { connect } from "react-redux"; import { Tooltip } from "antd"; import { InfoCircleOutlined, EyeTwoTone, EyeInvisibleOutlined, } from "@ant-design/icons"; import { StoreState } from "../../reducers"; import { Alert } from "antd"; interface InstrumentationPageProps {} const InstrumentationPage = (props: InstrumentationPageProps) => { return (

Instrument your application

Congrats, you have successfully installed SigNoz!
To start seeing YOUR application data here, follow the instructions in the docs - https://signoz.io/docs/instrumentation/overview
If you face any issues, join our slack community to ask any questions or mail us at support@signoz.io
); }; const mapStateToProps = (state: StoreState): {} => { return {}; }; export default connect(mapStateToProps, {})(InstrumentationPage);