-
Notifications
You must be signed in to change notification settings - Fork 8.6k
[Logs onboarding] Install steps for windows #163735
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
Changes from 1 commit
e6f359c
6dba57e
0e28365
8bdc0e3
c4a370b
a450970
908dfa1
4cfea7e
38b6526
f89cdf0
8296d86
faec2f3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| /* | ||
| * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
| * or more contributor license agreements. Licensed under the Elastic License | ||
| * 2.0; you may not use this file except in compliance with the Elastic License | ||
| * 2.0. | ||
| */ | ||
|
|
||
| import { EuiButton, EuiFlexGroup, EuiFlexItem, EuiLink, EuiText } from "@elastic/eui"; | ||
| import { i18n } from "@kbn/i18n"; | ||
| import React from "react"; | ||
|
|
||
| export function WindowsInstallStep() { | ||
| return ( | ||
| <EuiFlexGroup direction="column"> | ||
| <EuiFlexItem grow={false}> | ||
| <EuiText color="subdued"> | ||
| <p> | ||
| {i18n.translate( | ||
| 'xpack.observability_onboarding.windows.installStep.description', | ||
| { defaultMessage: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.' } | ||
| )} | ||
| </p> | ||
| </EuiText> | ||
| </EuiFlexItem> | ||
| <EuiFlexItem grow={false}> | ||
| <EuiButton | ||
| iconSide="right" | ||
| iconType="popout" | ||
| color="primary" | ||
| href="https://www.elastic.co/guide/en/fleet/current/install-standalone-elastic-agent.html" | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mdbirnstiehl is this the right link?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we could send them to the Stream a log file docs: https://www.elastic.co/guide/en/observability/current/logs-stream.html I think this will work better as long as we are ok with them manually configuring their agent without integrations and they want to use a standalone agent.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I just realized this is for the system logs and not the stream logs onboarding like in the example we looked at in Slack. Will this message be used for both? If this is just about installing the agent, we can use the link you put originally.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I placed the component in both flows: system and custom. For custom I will pass the link you referred to above.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Makes sense. That is probably the best link we have at this point for installing the agent then. I wonder if it would make sense to also point to the System integration?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I found https://www.elastic.co/guide/en/welcome-to-elastic/current/getting-started-observability.html, would that be a good entry point for documentation? We can replace the generic about installing standalone agent with this one if that one is too generic
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah yes! that is probably a much better place for them to get started for the system logs.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Addressed in f89cdf0. |
||
| target="_blank" | ||
| style={{ width: 'fit-content' }} | ||
| > | ||
| {i18n.translate( | ||
| 'xpack.observability_onboarding.windows.installStep.link.label', | ||
| { defaultMessage: 'Read docs' } | ||
| )} | ||
| </EuiButton> | ||
| </EuiFlexItem> | ||
| </EuiFlexGroup> | ||
| ); | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.