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

web-interface.assets.57e33c6c-119.11b9f72925818240e61d.js.map Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
{"version":3,"sources":["webpack:///./src/pages/StreamOutputsPage.jsx"],"names":["CurrentUserStore","StoreProvider","getStore","StreamsStore","StreamOutputsPage","createReactClass","displayName","propTypes","params","PropTypes","shape","streamId","string","isRequired","mixins","Reflux","connect","getInitialState","stream","undefined","componentDidMount","this","props","get","setState","render","state","currentUser","title","className","md","to","Routes","SYSTEM","OUTPUTS","href","rel","target","id","permissions","withParams"],"mappings":"4GAAA,+OA8BMA,EAAmBC,IAAcC,SAAS,eAC1CC,EAAeF,IAAcC,SAAS,WAEtCE,EAAoBC,IAAiB,CACzCC,YAAa,oBACbC,UAAW,CACTC,OAAQC,IAAUC,MAAM,CACtBC,SAAUF,IAAUG,OAAOC,aAC1BA,YAGLC,OAAQ,CAACC,IAAOC,QAAQhB,IAExBiB,gBAVyC,WAWvC,MAAO,CAAEC,YAAQC,IAGnBC,kBAdyC,WAcrB,WACVZ,EAAWa,KAAKC,MAAhBd,OAERL,EAAaoB,IAAIf,EAAOG,UAAU,SAACO,GACjC,EAAKM,SAAS,CAAEN,OAAQA,QAI5BO,OAtByC,WAsBhC,MACyBJ,KAAKK,MAA7BR,EADD,EACCA,OAAQS,EADT,EACSA,YAEhB,OAAKT,EAKH,kBAAC,IAAD,CAAeU,MAAK,6BAAwBV,EAAOU,QACjD,6BACE,kBAAC,IAAD,CAAgBC,UAAU,WACxB,kBAAC,IAAD,CAAKC,GAAI,IACP,mDAC6BZ,EAAOU,MADpC,KAIA,uBAAGC,UAAU,eAAb,gPAIuD,kBAAC,IAAD,CAAME,GAAIC,IAAOC,OAAOC,SAAxB,QAJvD,oCAKiC,uBAAGC,KAAK,mCAAmCC,IAAI,sBAAsBC,OAAO,UAA5E,2BALjC,KAQA,kBAAC,IAAD,KACE,uCADF,oHAEqB,uCAFrB,uHAGqD,IAHrD,IAG0D,kBAAC,IAAD,CAAMN,GAAIC,IAAOC,OAAOC,SAAxB,sBAH1D,OAOJ,kBAAC,IAAD,CAAkBvB,SAAUO,EAAOoB,GAAIC,YAAaZ,EAAYY,gBA3B7D,kBAAC,KAAD,SAkCEC,sBAAWpC","file":"57e33c6c-119.11b9f72925818240e61d.js","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';\nimport Reflux from 'reflux';\nimport createReactClass from 'create-react-class';\n\nimport { Link } from 'components/graylog/router';\nimport { Col } from 'components/graylog';\nimport { ContentHeadRow, DocumentTitle, Spinner } from 'components/common';\nimport OutputsComponent from 'components/outputs/OutputsComponent';\nimport SupportLink from 'components/support/SupportLink';\nimport StoreProvider from 'injection/StoreProvider';\nimport Routes from 'routing/Routes';\nimport withParams from 'routing/withParams';\n\nconst CurrentUserStore = StoreProvider.getStore('CurrentUser');\nconst StreamsStore = StoreProvider.getStore('Streams');\n\nconst StreamOutputsPage = createReactClass({\n  displayName: 'StreamOutputsPage',\n  propTypes: {\n    params: PropTypes.shape({\n      streamId: PropTypes.string.isRequired,\n    }).isRequired,\n  },\n\n  mixins: [Reflux.connect(CurrentUserStore)],\n\n  getInitialState() {\n    return { stream: undefined };\n  },\n\n  componentDidMount() {\n    const { params } = this.props;\n\n    StreamsStore.get(params.streamId, (stream) => {\n      this.setState({ stream: stream });\n    });\n  },\n\n  render() {\n    const { stream, currentUser } = this.state;\n\n    if (!stream) {\n      return ;\n    }\n\n    return (\n      \n        
\n \n \n

\n Outputs for Stream »{stream.title}«\n

\n\n

\n Graylog nodes can forward messages of streams via outputs. Launch or terminate as many outputs as you want here.\n You can also reuse outputs that are already running for other streams.\n\n A global view of all configured outputs is available here.\n You can find output plugins on the Graylog Marketplace.\n

\n\n \n Removing an output removes it from this stream but it will still be in the list of available outputs.\n Deleting an output globally will remove it from this and all other streams and terminate it.\n You can see all defined outputs in details at the {' '} global output list.\n \n \n
\n \n
\n
\n );\n },\n});\n\nexport default withParams(StreamOutputsPage);\n"],"sourceRoot":""}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy