jump to:allmastodonblueskylemmylobstersdevstackwikirsshn
wwebbit
view: | | |

Tech / Stack Overflow · hot matching “server”

4 shown · updated 10m ago · read only
  1. Zabbix 7.4 trapper rejects historical data older than 1 hour despite HistoryStoragePeriod set to 730 days [closed] (stackoverflow.com)stack

    26 points by TA1989 in stackoverflow.com · 2h ago · stack

    I'm trying to backfill historical nginx logs into Zabbix using zabbix_sender with timestamps. The data is from May–June 2026, but Zabbix server logs show: value timestamp "2026.06.01 12:00:00" is outside history storage period Environment: Zabbix server 7.4 running in Docker (of…
    filed under zabbix
  2. Is this ActiveMQ Classic use-case possible in ActiveMQ Artemis? (stackoverflow.com)stack

    18 points by reid in stackoverflow.com · 2y ago · stack

    I'm trying to convert an application from ActiveMQ Classic to ActiveMQ Artemis but it seems like it is going to require a redesign to use ActiveMQ Artemis. I have a server which services a number of clients via an ActiveMQ Classic broker. Each client manages multiple sessions an…
    filed under activemq-artemis
  3. Why does the Content-Security-Policy settings in web.config have no effect? (stackoverflow.com)stack

    8 points by Edward Tanguay in stackoverflow.com · 8y ago · stack

    In a small ASP.NET MVC test application, I added the appropriate httpProtocol code to the web.config file, as described in this article : <system.webServer> <handlers> <remove name="BlockViewHandler"/> <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode"…
  4. Asyncio StreamReader occasionally reads 0 bytes (stackoverflow.com)stack

    4 points by mobo in stackoverflow.com · 11y ago · stack

    I have a simple streamreader that is listening to a TCP port for a websocket implementation. The stream occasionally reads (every 30-300 second) blank data and throws an error. loop = asyncio.get_event_loop() coro = asyncio.start_server(handle_echo, 'not.real.ip.address', 8888,…