mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Ent Search] Connectors tooltip copyediting (#181308)
Following up on https://github.com/elastic/kibana/pull/180728/files Part of https://github.com/elastic/connectors/issues/2316 --------- Co-authored-by: Sean Story <sean.story@elastic.co> Co-authored-by: Sean Story <sean.j.story@gmail.com>
This commit is contained in:
parent
46cb23a80d
commit
d6e3bd1693
3 changed files with 10 additions and 10 deletions
|
@ -12,7 +12,7 @@ exports[`DocumentsPanel renders 1`] = `
|
|||
"name": <EuiToolTip
|
||||
content={
|
||||
<FormattedMessage
|
||||
defaultMessage="The number of {index} operations the connector sent to the Elasticsearch _bulk API during this sync. This includes net-new documents and updates to existing documents. This does not account for duplicate _ids, or any documents dropped by an ingest processor"
|
||||
defaultMessage="Number of {index} operations the connector sent to the Elasticsearch _bulk API, including updates to existing documents. Note that the number of documents upserted and the number of documents in the index may differ."
|
||||
id="searchConnectors.index.syncJobs.documents.upserted.tooltip"
|
||||
values={
|
||||
Object {
|
||||
|
@ -43,7 +43,7 @@ exports[`DocumentsPanel renders 1`] = `
|
|||
"name": <EuiToolTip
|
||||
content={
|
||||
<FormattedMessage
|
||||
defaultMessage="The number of {delete} operations the connector sent to the Elasticsearch _bulk API at the conclusion of this sync. This may include documents dropped by Sync Rules. This does not include documents dropped by ingest processors. Documents are deleted from the index if the connector determines that they are no longer present in the data that should be fetched from the 3rd-party source."
|
||||
defaultMessage="Number of {delete} operations the connector sent to the Elasticsearch _bulk API. May include documents dropped by Sync Rules. Does not include documents dropped by ingest processors. Documents are deleted when the connector determines they are no longer present in the third-party source."
|
||||
id="searchConnectors.index.syncJobs.documents.deleted.tooltip"
|
||||
values={
|
||||
Object {
|
||||
|
@ -74,7 +74,7 @@ exports[`DocumentsPanel renders 1`] = `
|
|||
"name": <EuiToolTip
|
||||
content={
|
||||
<FormattedMessage
|
||||
defaultMessage="The volume, in MB, of JSON data sent with {index} operations to the Elasticsearch _bulk API during this sync. The current Elasticsearch Index size may be larger, depending on index mappings and settings. It also may be smaller, if large data is substantially trimmed by ingest processors."
|
||||
defaultMessage="Volume (in MB) of JSON data sent with {index} operations to the Elasticsearch _bulk API. The Elasticsearch index may be larger, depending on index mappings and settings, or smaller, if data is trimmed by ingest processors."
|
||||
id="searchConnectors.index.syncJobs.documents.volume.tooltip"
|
||||
values={
|
||||
Object {
|
||||
|
|
|
@ -30,7 +30,7 @@ export const SyncJobDocumentsPanel: React.FC<SyncJobDocumentsPanelProps> = (sync
|
|||
content={
|
||||
<FormattedMessage
|
||||
id="searchConnectors.index.syncJobs.documents.upserted.tooltip"
|
||||
defaultMessage="The number of {index} operations the connector sent to the Elasticsearch _bulk API during this sync. This includes net-new documents and updates to existing documents. This does not account for duplicate _ids, or any documents dropped by an ingest processor"
|
||||
defaultMessage="Number of {index} operations the connector sent to the Elasticsearch _bulk API, including updates to existing documents. Note that the number of documents upserted and the number of documents in the index may differ."
|
||||
values={{ index: <EuiCode>index</EuiCode> }}
|
||||
/>
|
||||
}
|
||||
|
@ -51,7 +51,7 @@ export const SyncJobDocumentsPanel: React.FC<SyncJobDocumentsPanelProps> = (sync
|
|||
content={
|
||||
<FormattedMessage
|
||||
id="searchConnectors.index.syncJobs.documents.deleted.tooltip"
|
||||
defaultMessage="The number of {delete} operations the connector sent to the Elasticsearch _bulk API at the conclusion of this sync. This may include documents dropped by Sync Rules. This does not include documents dropped by ingest processors. Documents are deleted from the index if the connector determines that they are no longer present in the data that should be fetched from the 3rd-party source."
|
||||
defaultMessage="Number of {delete} operations the connector sent to the Elasticsearch _bulk API. May include documents dropped by Sync Rules. Does not include documents dropped by ingest processors. Documents are deleted when the connector determines they are no longer present in the third-party source."
|
||||
values={{ delete: <EuiCode>delete</EuiCode> }}
|
||||
/>
|
||||
}
|
||||
|
@ -72,7 +72,7 @@ export const SyncJobDocumentsPanel: React.FC<SyncJobDocumentsPanelProps> = (sync
|
|||
content={
|
||||
<FormattedMessage
|
||||
id="searchConnectors.index.syncJobs.documents.volume.tooltip"
|
||||
defaultMessage="The volume, in MB, of JSON data sent with {index} operations to the Elasticsearch _bulk API during this sync. The current Elasticsearch Index size may be larger, depending on index mappings and settings. It also may be smaller, if large data is substantially trimmed by ingest processors."
|
||||
defaultMessage="Volume (in MB) of JSON data sent with {index} operations to the Elasticsearch _bulk API. The Elasticsearch index may be larger, depending on index mappings and settings, or smaller, if data is trimmed by ingest processors."
|
||||
values={{ index: <EuiCode>index</EuiCode> }}
|
||||
/>
|
||||
}
|
||||
|
|
|
@ -64,7 +64,7 @@ export const SyncJobsTable: React.FC<SyncJobHistoryTableProps> = ({
|
|||
content={
|
||||
<FormattedMessage
|
||||
id="searchConnectors.syncJobs.lastSync.columnTitle.tooltip"
|
||||
defaultMessage="The timestamp of a given job's {completed_at}. This is when syncs finish, either successfully, in error, or by being canceled."
|
||||
defaultMessage="The timestamp of a given job's {completed_at}. Syncs complete with a success, an error, or a cancellation."
|
||||
values={{ completed_at: <EuiCode>completed_at</EuiCode> }}
|
||||
/>
|
||||
}
|
||||
|
@ -88,7 +88,7 @@ export const SyncJobsTable: React.FC<SyncJobHistoryTableProps> = ({
|
|||
content={
|
||||
<FormattedMessage
|
||||
id="searchConnectors.syncJobs.syncDuration.columnTitle.tooltip"
|
||||
defaultMessage="The time between when a sync started ({started_at}) and when it terminated ({completed_at}) (whether successfully, in error, or canceled). Note that this does not include the time the job may have spent in a “pending” stage, waiting for a worker to pick it up."
|
||||
defaultMessage="Time elapsed between a sync's {started_at} and {completed_at} timestamps. Does not include time spent in “pending” stage."
|
||||
values={{
|
||||
completed_at: <EuiCode>completed_at</EuiCode>,
|
||||
started_at: <EuiCode>started_at</EuiCode>,
|
||||
|
@ -116,7 +116,7 @@ export const SyncJobsTable: React.FC<SyncJobHistoryTableProps> = ({
|
|||
content={
|
||||
<FormattedMessage
|
||||
id="searchConnectors.index.syncJobs.documents.upserted.tooltip"
|
||||
defaultMessage="The number of {index} operations the connector sent to the Elasticsearch _bulk API during this sync. This includes net-new documents and updates to existing documents. This does not account for duplicate _ids, or any documents dropped by an ingest processor"
|
||||
defaultMessage="Number of {index} operations the connector sent to the Elasticsearch _bulk API, including updates to existing documents. Note that the number of documents upserted and the number of documents in the index may differ."
|
||||
values={{ index: <EuiCode>index</EuiCode> }}
|
||||
/>
|
||||
}
|
||||
|
@ -144,7 +144,7 @@ export const SyncJobsTable: React.FC<SyncJobHistoryTableProps> = ({
|
|||
content={
|
||||
<FormattedMessage
|
||||
id="searchConnectors.index.syncJobs.documents.deleted.tooltip"
|
||||
defaultMessage="The number of {delete} operations the connector sent to the Elasticsearch _bulk API at the conclusion of this sync. This may include documents dropped by Sync Rules. This does not include documents dropped by ingest processors. Documents are deleted from the index if the connector determines that they are no longer present in the data that should be fetched from the 3rd-party source."
|
||||
defaultMessage="Number of {delete} operations the connector sent to the Elasticsearch _bulk API. May include documents dropped by Sync Rules. Does not include documents dropped by ingest processors. Documents are deleted when the connector determines they are no longer present in the third-party source."
|
||||
values={{ delete: <EuiCode>delete</EuiCode> }}
|
||||
/>
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue