All Downloads are FREE. Search and download functionalities are using the official Maven repository.

web-interface.assets.b6fe2bb5-2239.710c06f69f439a9fadb4.js.map Maven / Gradle / Ivy

{"version":3,"file":"b6fe2bb5-2239.710c06f69f439a9fadb4.js","mappings":"uSA2BMA,EAAcC,EAAAA,QAAAA,IAAAA,WAAH,wEAAGA,CAAH,oEAMXC,EAAYD,EAAAA,QAAAA,IAAAA,WAAH,sEAAGA,EAAW,gBAAGE,EAAH,EAAGA,MAAH,OAAeC,EAAAA,EAAAA,KAAd,CAAD,sFAKhBD,EAAME,OAAOC,OAAOC,QAIpBJ,EAAME,OAAOC,OAAOE,gBAI3BC,EAAUR,EAAAA,QAAAA,EAAAA,WAAH,oEAAGA,CAAH,gCAKPS,EAAmB,SAAC,GAAmC,IAAjCC,EAAiC,EAAjCA,SAAUC,EAAuB,EAAvBA,UACpC,OACE,gBAACZ,EAAD,CAAaY,UAAS,UAAKA,EAAL,0BACpB,gBAACV,EAAD,CAAWU,UAAU,YACnB,gBAAC,KAAD,CAAMC,KAAK,SAASD,UAAU,gBAC9B,gBAAC,KAAD,CAAMC,KAAK,YAAYD,UAAU,cAAcE,KAAK,aAGtD,gBAACL,EAAD,KACGE,KAMTD,EAAiBK,UAAY,CAC3BJ,SAAUK,IAAAA,KAAAA,WACVJ,UAAWI,IAAAA,QAGbN,EAAiBO,aAAe,CAC9BL,eAAWM,GAGb,U,0vDCQA,QAxDMC,SAAAA,I,wcACI,I,yBAUU,I,mBAEP,SAACC,EAAMC,GAChBC,EAAAA,EAAAA,KAA0BD,GAAOD,EAAO,GAAKC,GAAME,MAAK,SAACC,GACvD,EAAKC,SAAS,CAAEC,SAAUF,EAASE,iB,iCAId,SAACN,EAAMC,GAC9B,EAAKM,SAASP,EAAMC,M,gDAjBtB,WAAoB,WAClBC,EAAAA,EAAAA,MAA2BM,GAAAA,GAASC,SAAS,GAAI,UAAUN,MAAK,SAACC,GAC/D,EAAKC,SAAS,CAAEK,MAAON,EAASO,WAGlCC,KAAKL,SAAS,EAAGK,KAAKC,mB,oBAexB,WACE,YAAyBf,IAArBc,KAAKE,MAAMJ,OAAwBE,KAAKE,MAAMR,SAKhD,gBAAC,KAAD,CAAeS,MAAM,oBACnB,4BACE,gBAAC,KAAD,CAAYA,MAAM,oBAChB,2IAC+G,IAD/G,gHAEgH,IAFhH,iGAMA,gEACoCC,GAAAA,CAAQJ,KAAKE,MAAMJ,OAAOO,OAAO,OADrE,wDAEoB,gBAAC,KAAD,CAAmBjB,KAAMkB,EAAAA,EAAAA,MAAAA,iBAAmCC,KAAK,kBAFrF,MAKF,gBAAC,KAAD,CAAK3B,UAAU,WACb,gBAAC,KAAD,CAAK4B,GAAI,IACP,gBAAC,KAAD,CAAeC,WAAYT,KAAKE,MAAMJ,MAAOY,SAAUV,KAAKW,uBAAwBC,SAAUZ,KAAKC,iBACjG,gBAAC,KAAD,CAAqBP,SAAUM,KAAKE,MAAMR,gBArB7C,gBAAC,KAAD,W,gFAzBPP,CAA4B0B,EAAAA","sources":["webpack://graylog-web-interface/./src/components/support/SmallSupportLink.tsx","webpack://graylog-web-interface/./src/pages/IndexerFailuresPage.jsx"],"sourcesContent":["/*\n * Copyright (C) 2020 Graylog, Inc.\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the Server Side Public License, version 1,\n * as published by MongoDB, Inc.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * Server Side Public License for more details.\n *\n * You should have received a copy of the Server Side Public License\n * along with this program. If not, see\n * .\n */\nimport PropTypes from 'prop-types';\nimport * as React from 'react';\nimport styled, { css } from 'styled-components';\n\nimport { Icon } from 'components/common';\n\ntype Props = {\n  children: React.ReactNode,\n  className?: string,\n};\n\nconst Description = styled.div`\n  display: inline-flex;\n  justify-content: center;\n  align-items: center;\n`;\n\nconst IconStack = styled.div(({ theme }) => css`\n  position: relative;\n  min-width: 2.5em;\n  \n  .fa-stack-1x {\n    color: ${theme.colors.global.textAlt};\n  }\n  \n  .fa-stack-2x {\n    color: ${theme.colors.global.textDefault};\n  }\n`);\n\nconst Content = styled.p`\n  font-weight: bold;\n  margin: 0;\n`;\n\nconst SmallSupportLink = ({ children, className }: Props) => {\n  return (\n    \n      \n        \n        \n      \n\n      \n        {children}\n      \n    \n  );\n};\n\nSmallSupportLink.propTypes = {\n  children: PropTypes.node.isRequired,\n  className: PropTypes.string,\n};\n\nSmallSupportLink.defaultProps = {\n  className: undefined,\n};\n\nexport default SmallSupportLink;\n","/*\n * Copyright (C) 2020 Graylog, Inc.\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the Server Side Public License, version 1,\n * as published by MongoDB, Inc.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * Server Side Public License for more details.\n *\n * You should have received a copy of the Server Side Public License\n * along with this program. If not, see\n * .\n */\nimport React from 'react';\nimport numeral from 'numeral';\nimport moment from 'moment';\n\nimport { Col, Row } from 'components/bootstrap';\nimport DocsHelper from 'util/DocsHelper';\nimport { DocumentTitle, Spinner, PageHeader, PaginatedList } from 'components/common';\nimport { DocumentationLink } from 'components/support';\nimport { IndexerFailuresList } from 'components/indexers';\nimport { IndexerFailuresStore } from 'stores/indexers/IndexerFailuresStore';\n\nclass IndexerFailuresPage extends React.Component {\n  state = {};\n\n  componentDidMount() {\n    IndexerFailuresStore.count(moment().subtract(10, 'years')).then((response) => {\n      this.setState({ total: response.count });\n    });\n\n    this.loadData(1, this.defaultPageSize);\n  }\n\n  defaultPageSize = 50;\n\n  loadData = (page, size) => {\n    IndexerFailuresStore.list(size, (page - 1) * size).then((response) => {\n      this.setState({ failures: response.failures });\n    });\n  };\n\n  _onChangePaginatedList = (page, size) => {\n    this.loadData(page, size);\n  };\n\n  render() {\n    if (this.state.total === undefined || !this.state.failures) {\n      return ;\n    }\n\n    return (\n      \n        \n          \n            \n              This is a list of message index attempts that failed. A failure means that a message you sent to Graylog was{' '}\n              properly processed but writing it to the Elasticsearch cluster failed. Note that the list is capped to a size{' '}\n              of 50 MB so it will contain a lot of failure logs but not necessarily all that ever occurred.\n            \n\n            \n              Collection containing a total of {numeral(this.state.total).format('0,0')} indexer failures. Read more about\n              this topic in the .\n            \n          \n          \n            \n              \n                \n              \n            \n          \n        \n      \n    );\n  }\n}\n\nexport default IndexerFailuresPage;\n"],"names":["Description","styled","IconStack","theme","css","colors","global","textAlt","textDefault","Content","SmallSupportLink","children","className","name","type","propTypes","PropTypes","defaultProps","undefined","IndexerFailuresPage","page","size","IndexerFailuresStore","then","response","setState","failures","loadData","moment","subtract","total","count","this","defaultPageSize","state","title","numeral","format","DocsHelper","text","md","totalItems","onChange","_onChangePaginatedList","pageSize","React"],"sourceRoot":""}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy