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

web-interface.assets.b6fe2bb5-7201.431ac1b0b3319dbf2995.js.map Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
{"version":3,"file":"b6fe2bb5-7201.431ac1b0b3319dbf2995.js","mappings":"k4DA6BMA,EAAAA,SAAAA,I,wcAKI,CACNC,YAAQC,I,gDAGV,WAAoB,WAClBC,EAAAA,GAAAA,IAAiBC,KAAKC,MAAMC,OAAOC,UAAU,SAACN,GAC5C,EAAKO,SAAS,CAAEP,OAAQA,S,oBAI5B,WACE,IAAQA,EAAWG,KAAKK,MAAhBR,OAGR,OAFmBA,EAOjB,gBAAC,KAAD,CAAeS,MAAK,uCAAkCT,EAAOS,QAC3D,2BACE,gBAAC,KAAD,CAAYA,MAAO,6DAA2CT,EAAOS,MAAlD,MACjB,mHACuF,IACrF,0BAAKT,EAAOS,OAFd,KAKA,+DACkC,gBAAC,IAAD,CAAmBC,KAAMC,EAAAA,EAAAA,MAAAA,OAAyBC,KAAK,kBADzF,KAIA,gBAAC,KAAD,KACE,gBAAC,IAAD,CAAeC,GAAIC,EAAAA,GAAAA,SACjB,gBAAC,KAAD,CAAQC,QAAQ,QAAhB,YAEF,gBAAC,IAAD,CAAeF,GAAIC,EAAAA,GAAAA,cAAAA,MACjB,gBAAC,KAAD,CAAQC,QAAQ,QAAhB,eAEF,gBAAC,IAAD,CAAeF,GAAIC,EAAAA,GAAAA,cAAAA,YACjB,gBAAC,KAAD,CAAQC,QAAQ,QAAhB,mBAEF,gBAAC,IAAD,CAAeF,GAAIC,EAAAA,GAAAA,cAAAA,eACjB,gBAAC,KAAD,CAAQC,QAAQ,QAAhB,wBAKN,gBAAC,KAAD,CAA+Bf,OAAQA,MAhCpC,gBAAC,KAAD,CAAeS,MAAM,0BAAyB,gBAAC,KAAD,Y,gFApBrDV,CAAiCiB,EAAAA,W,EAAjCjB,EAAAA,YACe,CACjBM,OAAQY,IAAAA,OAAAA,aAyDZ,SAAeC,EAAAA,EAAAA,GAAWnB","sources":["webpack://graylog-web-interface/./src/pages/StreamAlertsOverviewPage.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 React from 'react';\nimport PropTypes from 'prop-types';\n\nimport { LinkContainer } from 'components/common/router';\nimport { ButtonToolbar, Button } from 'components/bootstrap';\nimport { DocumentTitle, PageHeader, Spinner } from 'components/common';\nimport Routes from 'routing/Routes';\nimport { StreamAlertsOverviewContainer } from 'components/alerts';\nimport DocumentationLink from 'components/support/DocumentationLink';\nimport DocsHelper from 'util/DocsHelper';\nimport withParams from 'routing/withParams';\nimport { StreamsStore } from 'stores/streams/StreamsStore';\n\nclass StreamAlertsOverviewPage extends React.Component {\n  static propTypes = {\n    params: PropTypes.object.isRequired,\n  };\n\n  state = {\n    stream: undefined,\n  };\n\n  componentDidMount() {\n    StreamsStore.get(this.props.params.streamId, (stream) => {\n      this.setState({ stream: stream });\n    });\n  }\n\n  render() {\n    const { stream } = this.state;\n    const isLoading = !stream;\n\n    if (isLoading) {\n      return ;\n    }\n\n    return (\n      \n        
\n Alerting overview for Stream »{stream.title}«}>\n \n This is an overview of alerts, conditions, and notifications belonging to the Stream{' '}\n {stream.title}.\n \n\n \n Read more about alerting in the .\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n
\n
\n );\n }\n}\n\nexport default withParams(StreamAlertsOverviewPage);\n"],"names":["StreamAlertsOverviewPage","stream","undefined","StreamsStore","this","props","params","streamId","setState","state","title","page","DocsHelper","text","to","Routes","bsStyle","React","PropTypes","withParams"],"sourceRoot":""}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy