]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
remove brackets from cachemgr output
authorwessels <>
Sat, 7 Feb 1998 15:13:36 +0000 (15:13 +0000)
committerwessels <>
Sat, 7 Feb 1998 15:13:36 +0000 (15:13 +0000)
src/client_db.cc
src/dns.cc
src/fqdncache.cc
src/globals.h
src/http.cc
src/ipcache.cc
src/net_db.cc
src/redirect.cc
src/stat.cc

index b06f35627e190c3c6811aa386f79ea3262643184..3a0fd07ab5780c39c000aaf09b26dec660e1a2ad 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: client_db.cc,v 1.19 1997/10/25 17:22:35 wessels Exp $
+ * $Id: client_db.cc,v 1.20 1998/02/07 08:13:36 wessels Exp $
  *
  * DEBUG: section 0     Client Database
  * AUTHOR: Duane Wessels
@@ -109,35 +109,34 @@ clientdbDump(StoreEntry * sentry)
 {
     ClientInfo *c;
     log_type l;
-    storeAppendPrintf(sentry, "{Cache Clients:\n");
+    storeAppendPrintf(sentry, "Cache Clients:\n");
     c = (ClientInfo *) hash_first(client_table);
     while (c) {
-       storeAppendPrintf(sentry, "{Address: %s}\n", c->key);
-       storeAppendPrintf(sentry, "{Name: %s}\n", fqdnFromAddr(c->addr));
-       storeAppendPrintf(sentry, "{    ICP Requests %d}\n",
+       storeAppendPrintf(sentry, "Address: %s\n", c->key);
+       storeAppendPrintf(sentry, "Name: %s\n", fqdnFromAddr(c->addr));
+       storeAppendPrintf(sentry, "    ICP Requests %d\n",
            c->Icp.n_requests);
        for (l = LOG_TAG_NONE; l < LOG_TYPE_MAX; l++) {
            if (c->Icp.result_hist[l] == 0)
                continue;
            storeAppendPrintf(sentry,
-               "{        %-20.20s %7d %3d%%}\n",
+               "        %-20.20s %7d %3d%%\n",
                log_tags[l],
                c->Icp.result_hist[l],
                percent(c->Icp.result_hist[l], c->Icp.n_requests));
        }
-       storeAppendPrintf(sentry, "{    HTTP Requests %d}\n",
+       storeAppendPrintf(sentry, "    HTTP Requests %d\n",
            c->Http.n_requests);
        for (l = LOG_TAG_NONE; l < LOG_TYPE_MAX; l++) {
            if (c->Http.result_hist[l] == 0)
                continue;
            storeAppendPrintf(sentry,
-               "{        %-20.20s %7d %3d%%}\n",
+               "        %-20.20s %7d %3d%%\n",
                log_tags[l],
                c->Http.result_hist[l],
                percent(c->Http.result_hist[l], c->Http.n_requests));
        }
-       storeAppendPrintf(sentry, "{}\n");
+       storeAppendPrintf(sentry, "\n");
        c = (ClientInfo *) hash_next(client_table);
     }
-    storeAppendPrintf(sentry, close_bracket);
 }
index c2c761858f203bb936aa08146698eb312a2e92f2..2428296f2b04009158485bbc6aef6f20ee514d5a 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: dns.cc,v 1.53 1998/02/02 21:16:22 wessels Exp $
+ * $Id: dns.cc,v 1.54 1998/02/07 08:13:36 wessels Exp $
  *
  * DEBUG: section 34    Dnsserver interface
  * AUTHOR: Harvest Derived
@@ -214,46 +214,44 @@ dnsStats(StoreEntry * sentry)
 {
     int k;
     dnsserver_t *dns = NULL;
-    storeAppendPrintf(sentry, "{DNSServer Statistics:\n");
-    storeAppendPrintf(sentry, "{dnsserver requests: %d}\n",
+    storeAppendPrintf(sentry, "DNSServer Statistics:\n");
+    storeAppendPrintf(sentry, "dnsserver requests: %d\n",
        DnsStats.requests);
-    storeAppendPrintf(sentry, "{dnsserver replies: %d}\n",
+    storeAppendPrintf(sentry, "dnsserver replies: %d\n",
        DnsStats.replies);
-    storeAppendPrintf(sentry, "{number of dnsservers: %d}\n",
+    storeAppendPrintf(sentry, "number of dnsservers: %d\n",
        NDnsServersAlloc);
-    storeAppendPrintf(sentry, "{dnsservers use histogram:}\n");
+    storeAppendPrintf(sentry, "dnsservers use histogram:\n");
     for (k = 0; k < NDnsServersAlloc; k++) {
-       storeAppendPrintf(sentry, "{    dnsserver #%d: %d}\n",
+       storeAppendPrintf(sentry, "    dnsserver #%d: %d\n",
            k + 1,
            DnsStats.hist[k]);
     }
-    storeAppendPrintf(sentry, "{}\n");
-    storeAppendPrintf(sentry, "{dnsservers status:}\n");
+    storeAppendPrintf(sentry, "\n");
+    storeAppendPrintf(sentry, "dnsservers status:\n");
     for (k = 0; k < NDnsServersAlloc; k++) {
        dns = *(dns_child_table + k);
-       storeAppendPrintf(sentry, "{dnsserver #%d:}\n", k + 1);
-       storeAppendPrintf(sentry, "{    Flags: %c%c%c%c}\n",
+       storeAppendPrintf(sentry, "dnsserver #%d:\n", k + 1);
+       storeAppendPrintf(sentry, "    Flags: %c%c%c%c\n",
            EBIT_TEST(dns->flags, HELPER_ALIVE) ? 'A' : ' ',
            EBIT_TEST(dns->flags, HELPER_BUSY) ? 'B' : ' ',
            EBIT_TEST(dns->flags, HELPER_CLOSING) ? 'C' : ' ',
            EBIT_TEST(dns->flags, HELPER_SHUTDOWN) ? 'S' : ' ');
-       storeAppendPrintf(sentry, "{    FDs (in/out): %d/%d}\n",
+       storeAppendPrintf(sentry, "    FDs (in/out): %d/%d\n",
            dns->inpipe, dns->outpipe);
-       storeAppendPrintf(sentry, "{    Alive since: %s}\n",
+       storeAppendPrintf(sentry, "    Alive since: %s\n",
            mkrfc1123(dns->answer));
-       storeAppendPrintf(sentry, "{    Last Dispatched: %0.3f seconds ago}\n",
+       storeAppendPrintf(sentry, "    Last Dispatched: %0.3f seconds ago\n",
            0.001 * tvSubMsec(dns->dispatch_time, current_time));
-       storeAppendPrintf(sentry, "{    Read Buffer Size: %d bytes}\n",
+       storeAppendPrintf(sentry, "    Read Buffer Size: %d bytes\n",
            dns->size);
-       storeAppendPrintf(sentry, "{    Read Offset: %d bytes}\n",
+       storeAppendPrintf(sentry, "    Read Offset: %d bytes\n",
            dns->offset);
     }
-    storeAppendPrintf(sentry, "\n{Flags key:}\n\n");
-    storeAppendPrintf(sentry, "{   A = ALIVE}\n");
-    storeAppendPrintf(sentry, "{   B = BUSY}\n");
-    storeAppendPrintf(sentry, "{   C = CLOSING}\n");
-
-    storeAppendPrintf(sentry, close_bracket);
+    storeAppendPrintf(sentry, "\nFlags key:\n\n");
+    storeAppendPrintf(sentry, "   A = ALIVE\n");
+    storeAppendPrintf(sentry, "   B = BUSY\n");
+    storeAppendPrintf(sentry, "   C = CLOSING\n");
 }
 
 void
index 0f9927901e181c72ec398c82b917ba953df8c785..51988912c0228f5b05a63624fb7d6cbedec5cb95 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: fqdncache.cc,v 1.79 1998/02/03 04:21:13 wessels Exp $
+ * $Id: fqdncache.cc,v 1.80 1998/02/07 08:13:37 wessels Exp $
  *
  * DEBUG: section 35    FQDN Cache
  * AUTHOR: Harvest Derived
@@ -714,25 +714,24 @@ fqdnStats(StoreEntry * sentry)
     int ttl;
     if (fqdn_table == NULL)
        return;
-    storeAppendPrintf(sentry, "{FQDN Cache Statistics:\n");
-    storeAppendPrintf(sentry, "{FQDNcache Entries: %d}\n",
+    storeAppendPrintf(sentry, "FQDN Cache Statistics:\n");
+    storeAppendPrintf(sentry, "FQDNcache Entries: %d\n",
        meta_data.fqdncache_count);
-    storeAppendPrintf(sentry, "{FQDNcache Requests: %d}\n",
+    storeAppendPrintf(sentry, "FQDNcache Requests: %d\n",
        FqdncacheStats.requests);
-    storeAppendPrintf(sentry, "{FQDNcache Hits: %d}\n",
+    storeAppendPrintf(sentry, "FQDNcache Hits: %d\n",
        FqdncacheStats.hits);
-    storeAppendPrintf(sentry, "{FQDNcache Pending Hits: %d}\n",
+    storeAppendPrintf(sentry, "FQDNcache Pending Hits: %d\n",
        FqdncacheStats.pending_hits);
-    storeAppendPrintf(sentry, "{FQDNcache Negative Hits: %d}\n",
+    storeAppendPrintf(sentry, "FQDNcache Negative Hits: %d\n",
        FqdncacheStats.negative_hits);
-    storeAppendPrintf(sentry, "{FQDNcache Misses: %d}\n",
+    storeAppendPrintf(sentry, "FQDNcache Misses: %d\n",
        FqdncacheStats.misses);
-    storeAppendPrintf(sentry, "{Blocking calls to gethostbyaddr(): %d}\n",
+    storeAppendPrintf(sentry, "Blocking calls to gethostbyaddr(): %d\n",
        FqdncacheStats.ghba_calls);
-    storeAppendPrintf(sentry, "{dnsserver avg service time: %d msec}\n",
+    storeAppendPrintf(sentry, "dnsserver avg service time: %d msec\n",
        FqdncacheStats.avg_svc_time);
-    storeAppendPrintf(sentry, "}\n\n");
-    storeAppendPrintf(sentry, "{FQDN Cache Contents:\n\n");
+    storeAppendPrintf(sentry, "FQDN Cache Contents:\n\n");
 
     next = (fqdncache_entry *) hash_first(fqdn_table);
     while ((f = next) != NULL) {
@@ -741,16 +740,14 @@ fqdnStats(StoreEntry * sentry)
            ttl = 0;
        else
            ttl = (f->expires - squid_curtime);
-       storeAppendPrintf(sentry, " {%-32.32s %c %6d %d",
+       storeAppendPrintf(sentry, " %-32.32s %c %6d %d",
            f->name,
            fqdncache_status_char[f->status],
            ttl,
            (int) f->name_count);
        for (k = 0; k < (int) f->name_count; k++)
            storeAppendPrintf(sentry, " %s", f->names[k]);
-       storeAppendPrintf(sentry, close_bracket);
     }
-    storeAppendPrintf(sentry, close_bracket);
 }
 
 static void
index 77f8336f175d7240616da2eba75c23e76bb2cd65..20d693245022d625d09f1bd32580840b00587e50 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: globals.h,v 1.34 1998/02/06 17:30:52 wessels Exp $
+ * $Id: globals.h,v 1.35 1998/02/07 08:13:37 wessels Exp $
  */
 
 extern FILE *debug_log;                /* NULL */
@@ -22,11 +22,9 @@ extern const char *RequestMethodStr[];
 extern const char *ProtocolStr[];
 extern const char *cfg_filename;       /* NULL */
 extern const char *const appname;      /* "squid" */
-extern const char *const close_bracket;                /* "}\n" */
 extern const char *const dash_str;     /* "-" */
 extern const char *const localhost;    /* "127.0.0.1" */
 extern const char *const null_string;  /* "" */
-extern const char *const open_bracket; /* "{\n" */
 extern const char *const version_string;       /* SQUID_VERSION */
 extern const char *const w_space;      /* " \t\n\r" */
 extern const char *fdstatTypeStr[];
index 3249310d4a059ef1c8160e958afe8225b4fe554a..a8d8d974eee3b3f9695ee7482cfdb6e5e2767d1b 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: http.cc,v 1.236 1998/02/04 07:22:20 wessels Exp $
+ * $Id: http.cc,v 1.237 1998/02/07 08:13:38 wessels Exp $
  *
  * DEBUG: section 11    Hypertext Transfer Protocol (HTTP)
  * AUTHOR: Harvest Derived
@@ -1122,19 +1122,17 @@ httpReplyHeaderStats(StoreEntry * entry)
 {
     http_server_cc_t i;
     http_hdr_misc_t j;
-    storeAppendPrintf(entry, open_bracket);
-    storeAppendPrintf(entry, "{HTTP Reply Headers:}\n");
-    storeAppendPrintf(entry, "{       Headers parsed: %d}\n",
+    storeAppendPrintf(entry, "HTTP Reply Headers:\n");
+    storeAppendPrintf(entry, "       Headers parsed: %d\n",
        ReplyHeaderStats.parsed);
     for (j = HDR_AGE; j < HDR_MISC_END; j++)
-       storeAppendPrintf(entry, "{%21.21s: %d}\n",
+       storeAppendPrintf(entry, "%21.21s: %d\n",
            HttpHdrMiscStr[j],
            ReplyHeaderStats.misc[j]);
     for (i = SCC_PUBLIC; i < SCC_ENUM_END; i++)
-       storeAppendPrintf(entry, "{Cache-Control %s: %d}\n",
+       storeAppendPrintf(entry, "Cache-Control %s: %d\n",
            HttpServerCCStr[i],
            ReplyHeaderStats.cc[i]);
-    storeAppendPrintf(entry, close_bracket);
 }
 
 static void
index fae8139d6afbbcf31fbd165192d5ddec17be74ca..5c94b8dd181af4697f0f118cb0436b0723c397a2 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: ipcache.cc,v 1.154 1998/02/03 04:21:17 wessels Exp $
+ * $Id: ipcache.cc,v 1.155 1998/02/07 08:13:39 wessels Exp $
  *
  * DEBUG: section 14    IP Cache
  * AUTHOR: Harvest Derived
@@ -764,7 +764,7 @@ static void
 ipcacheStatPrint(ipcache_entry * i, StoreEntry * sentry)
 {
     int k;
-    storeAppendPrintf(sentry, " {%-32.32s  %c%c %6d %6d %2d(%2d)",
+    storeAppendPrintf(sentry, " %-32.32s  %c%c %6d %6d %2d(%2d)",
        i->name,
        ipcache_status_char[i->status],
        i->locks ? 'L' : ' ',
@@ -775,7 +775,6 @@ ipcacheStatPrint(ipcache_entry * i, StoreEntry * sentry)
     for (k = 0; k < (int) i->addrs.count; k++)
        storeAppendPrintf(sentry, " %15s-%3s", inet_ntoa(i->addrs.in_addrs[k]),
            i->addrs.bad_mask[k] ? "BAD" : "OK ");
-    storeAppendPrintf(sentry, close_bracket);
 }
 
 /* process objects list */
@@ -784,29 +783,29 @@ stat_ipcache_get(StoreEntry * sentry)
 {
     dlink_node *m;
     assert(ip_table != NULL);
-    storeAppendPrintf(sentry, "{IP Cache Statistics:\n");
-    storeAppendPrintf(sentry, "{IPcache Entries: %d}\n",
+    storeAppendPrintf(sentry, "IP Cache Statistics:\n");
+    storeAppendPrintf(sentry, "IPcache Entries: %d\n",
        meta_data.ipcache_count);
-    storeAppendPrintf(sentry, "{IPcache Requests: %d}\n",
+    storeAppendPrintf(sentry, "IPcache Requests: %d\n",
        IpcacheStats.requests);
-    storeAppendPrintf(sentry, "{IPcache Hits: %d}\n",
+    storeAppendPrintf(sentry, "IPcache Hits: %d\n",
        IpcacheStats.hits);
-    storeAppendPrintf(sentry, "{IPcache Pending Hits: %d}\n",
+    storeAppendPrintf(sentry, "IPcache Pending Hits: %d\n",
        IpcacheStats.pending_hits);
-    storeAppendPrintf(sentry, "{IPcache Negative Hits: %d}\n",
+    storeAppendPrintf(sentry, "IPcache Negative Hits: %d\n",
        IpcacheStats.negative_hits);
-    storeAppendPrintf(sentry, "{IPcache Misses: %d}\n",
+    storeAppendPrintf(sentry, "IPcache Misses: %d\n",
        IpcacheStats.misses);
-    storeAppendPrintf(sentry, "{Blocking calls to gethostbyname(): %d}\n",
+    storeAppendPrintf(sentry, "Blocking calls to gethostbyname(): %d\n",
        IpcacheStats.ghbn_calls);
-    storeAppendPrintf(sentry, "{Attempts to release locked entries: %d}\n",
+    storeAppendPrintf(sentry, "Attempts to release locked entries: %d\n",
        IpcacheStats.release_locked);
-    storeAppendPrintf(sentry, "{dnsserver avg service time: %d msec}\n",
+    storeAppendPrintf(sentry, "dnsserver avg service time: %d msec\n",
        IpcacheStats.avg_svc_time);
-    storeAppendPrintf(sentry, "{pending queue length: %d}\n", queue_length);
-    storeAppendPrintf(sentry, "}\n\n");
-    storeAppendPrintf(sentry, "{IP Cache Contents:\n\n");
-    storeAppendPrintf(sentry, " {%-29.29s %5s %6s %6s %1s}\n",
+    storeAppendPrintf(sentry, "pending queue length: %d\n", queue_length);
+    storeAppendPrintf(sentry, "\n\n");
+    storeAppendPrintf(sentry, "IP Cache Contents:\n\n");
+    storeAppendPrintf(sentry, " %-29.29s %5s %6s %6s %1s\n",
        "Hostname",
        "Flags",
        "lstref",
@@ -814,7 +813,6 @@ stat_ipcache_get(StoreEntry * sentry)
        "N");
     for (m = lru_list.head; m; m = m->next)
        ipcacheStatPrint(m->data, sentry);
-    storeAppendPrintf(sentry, close_bracket);
 }
 
 static void
index 58cff038946a301ca1bc6e918c84a79d4294ef28..3547f5e8a97eb1a9c5a4bca5781a4162b07d70cf 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: net_db.cc,v 1.64 1998/02/07 07:55:32 wessels Exp $
+ * $Id: net_db.cc,v 1.65 1998/02/07 08:13:40 wessels Exp $
  *
  * DEBUG: section 37    Network Measurement Database
  * AUTHOR: Duane Wessels
@@ -595,8 +595,8 @@ netdbDump(StoreEntry * sentry)
     int i;
     int j;
     net_db_peer *p;
-    storeAppendPrintf(sentry, "{Network DB Statistics:\n");    /* } */
-    storeAppendPrintf(sentry, "{%-16.16s %9s %7s %5s %s}\n",
+    storeAppendPrintf(sentry, "Network DB Statistics:\n");
+    storeAppendPrintf(sentry, "%-16.16s %9s %7s %5s %s\n",
        "Network",
        "recv/sent",
        "RTT",
@@ -618,7 +618,7 @@ netdbDump(StoreEntry * sentry)
        sortByRtt);
     for (k = 0; k < i; k++) {
        n = *(list + k);
-       storeAppendPrintf(sentry, "{%-16.16s %4d/%4d %7.1f %5.1f",      /* } */
+       storeAppendPrintf(sentry, "%-16.16s %4d/%4d %7.1f %5.1f",
            n->network,
            n->pings_recv,
            n->pings_sent,
@@ -626,16 +626,14 @@ netdbDump(StoreEntry * sentry)
            n->hops);
        for (x = n->hosts; x; x = x->next)
            storeAppendPrintf(sentry, " %s", x->name);
-       storeAppendPrintf(sentry, close_bracket);
        p = n->peers;
        for (j = 0; j < n->n_peers; j++, p++) {
-           storeAppendPrintf(sentry, "{    %-22.22s %7.1f %5.1f}\n",
+           storeAppendPrintf(sentry, "    %-22.22s %7.1f %5.1f\n",
                p->peername,
                p->rtt,
                p->hops);
        }
     }
-    storeAppendPrintf(sentry, close_bracket);
     xfree(list);
 #else
     storeAppendPrintf(sentry,
index ad9b68fc7206dcad0024bbc4251607cd09418c98..874c5573085a5c90671847441ccc13777df369c4 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: redirect.cc,v 1.54 1998/02/02 21:16:29 wessels Exp $
+ * $Id: redirect.cc,v 1.55 1998/02/07 08:13:40 wessels Exp $
  *
  * DEBUG: section 29    Redirector
  * AUTHOR: Duane Wessels
@@ -428,24 +428,22 @@ void
 redirectStats(StoreEntry * sentry)
 {
     int k;
-    storeAppendPrintf(sentry, open_bracket);
-    storeAppendPrintf(sentry, "{Redirector Statistics:}\n");
-    storeAppendPrintf(sentry, "{requests: %d}\n",
+    storeAppendPrintf(sentry, "Redirector Statistics:\n");
+    storeAppendPrintf(sentry, "requests: %d\n",
        RedirectStats.requests);
-    storeAppendPrintf(sentry, "{replies: %d}\n",
+    storeAppendPrintf(sentry, "replies: %d\n",
        RedirectStats.replies);
-    storeAppendPrintf(sentry, "{queue length: %d}\n",
+    storeAppendPrintf(sentry, "queue length: %d\n",
        RedirectStats.queue_size);
-    storeAppendPrintf(sentry, "{avg service time: %d msec}\n",
+    storeAppendPrintf(sentry, "avg service time: %d msec\n",
        RedirectStats.avg_svc_time);
-    storeAppendPrintf(sentry, "{number of redirectors: %d}\n",
+    storeAppendPrintf(sentry, "number of redirectors: %d\n",
        NRedirectors);
-    storeAppendPrintf(sentry, "{use histogram:}\n");
+    storeAppendPrintf(sentry, "use histogram:\n");
     for (k = 0; k < NRedirectors; k++) {
-       storeAppendPrintf(sentry, "{    redirector #%d: %d (%d rewrites)}\n",
+       storeAppendPrintf(sentry, "    redirector #%d: %d (%d rewrites)\n",
            k + 1,
            RedirectStats.use_hist[k],
            RedirectStats.rewrites[k]);
     }
-    storeAppendPrintf(sentry, close_bracket);
 }
index 96566efc4aa1b66d6edfdc996694725fe2569836..645cdaeaff93985c7c313f37187fdc32e565afdb 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: stat.cc,v 1.193 1998/02/06 17:50:24 wessels Exp $
+ * $Id: stat.cc,v 1.194 1998/02/07 08:13:41 wessels Exp $
  *
  * DEBUG: section 18    Cache Manager Statistics
  * AUTHOR: Harvest Derived
@@ -141,67 +141,64 @@ stat_io_get(StoreEntry * sentry)
 {
     int i;
 
-    storeAppendPrintf(sentry, open_bracket);
-    storeAppendPrintf(sentry, "{HTTP I/O}\n");
-    storeAppendPrintf(sentry, "{number of reads: %d}\n", IOStats.Http.reads);
-    storeAppendPrintf(sentry, "{deferred reads: %d (%d%%)}\n",
+    storeAppendPrintf(sentry, "HTTP I/O\n");
+    storeAppendPrintf(sentry, "number of reads: %d\n", IOStats.Http.reads);
+    storeAppendPrintf(sentry, "deferred reads: %d (%d%%)\n",
        IOStats.Http.reads_deferred,
        percent(IOStats.Http.reads_deferred, IOStats.Http.reads));
-    storeAppendPrintf(sentry, "{Read Histogram:}\n");
+    storeAppendPrintf(sentry, "Read Histogram:\n");
     for (i = 0; i < 16; i++) {
-       storeAppendPrintf(sentry, "{%5d-%5d: %9d %2d%%}\n",
+       storeAppendPrintf(sentry, "%5d-%5d: %9d %2d%%\n",
            i ? (1 << (i - 1)) + 1 : 1,
            1 << i,
            IOStats.Http.read_hist[i],
            percent(IOStats.Http.read_hist[i], IOStats.Http.reads));
     }
 
-    storeAppendPrintf(sentry, "{}\n");
-    storeAppendPrintf(sentry, "{FTP I/O}\n");
-    storeAppendPrintf(sentry, "{number of reads: %d}\n", IOStats.Ftp.reads);
-    storeAppendPrintf(sentry, "{deferred reads: %d (%d%%)}\n",
+    storeAppendPrintf(sentry, "\n");
+    storeAppendPrintf(sentry, "FTP I/O\n");
+    storeAppendPrintf(sentry, "number of reads: %d\n", IOStats.Ftp.reads);
+    storeAppendPrintf(sentry, "deferred reads: %d (%d%%)\n",
        IOStats.Ftp.reads_deferred,
        percent(IOStats.Ftp.reads_deferred, IOStats.Ftp.reads));
-    storeAppendPrintf(sentry, "{Read Histogram:}\n");
+    storeAppendPrintf(sentry, "Read Histogram:\n");
     for (i = 0; i < 16; i++) {
-       storeAppendPrintf(sentry, "{%5d-%5d: %9d %2d%%}\n",
+       storeAppendPrintf(sentry, "%5d-%5d: %9d %2d%%\n",
            i ? (1 << (i - 1)) + 1 : 1,
            1 << i,
            IOStats.Ftp.read_hist[i],
            percent(IOStats.Ftp.read_hist[i], IOStats.Ftp.reads));
     }
 
-    storeAppendPrintf(sentry, "{}\n");
-    storeAppendPrintf(sentry, "{Gopher I/O}\n");
-    storeAppendPrintf(sentry, "{number of reads: %d}\n", IOStats.Gopher.reads);
-    storeAppendPrintf(sentry, "{deferred reads: %d (%d%%)}\n",
+    storeAppendPrintf(sentry, "\n");
+    storeAppendPrintf(sentry, "Gopher I/O\n");
+    storeAppendPrintf(sentry, "number of reads: %d\n", IOStats.Gopher.reads);
+    storeAppendPrintf(sentry, "deferred reads: %d (%d%%)\n",
        IOStats.Gopher.reads_deferred,
        percent(IOStats.Gopher.reads_deferred, IOStats.Gopher.reads));
-    storeAppendPrintf(sentry, "{Read Histogram:}\n");
+    storeAppendPrintf(sentry, "Read Histogram:\n");
     for (i = 0; i < 16; i++) {
-       storeAppendPrintf(sentry, "{%5d-%5d: %9d %2d%%}\n",
+       storeAppendPrintf(sentry, "%5d-%5d: %9d %2d%%\n",
            i ? (1 << (i - 1)) + 1 : 1,
            1 << i,
            IOStats.Gopher.read_hist[i],
            percent(IOStats.Gopher.read_hist[i], IOStats.Gopher.reads));
     }
 
-    storeAppendPrintf(sentry, "{}\n");
-    storeAppendPrintf(sentry, "{WAIS I/O}\n");
-    storeAppendPrintf(sentry, "{number of reads: %d}\n", IOStats.Wais.reads);
-    storeAppendPrintf(sentry, "{deferred reads: %d (%d%%)}\n",
+    storeAppendPrintf(sentry, "\n");
+    storeAppendPrintf(sentry, "WAIS I/O\n");
+    storeAppendPrintf(sentry, "number of reads: %d\n", IOStats.Wais.reads);
+    storeAppendPrintf(sentry, "deferred reads: %d (%d%%)\n",
        IOStats.Wais.reads_deferred,
        percent(IOStats.Wais.reads_deferred, IOStats.Wais.reads));
-    storeAppendPrintf(sentry, "{Read Histogram:}\n");
+    storeAppendPrintf(sentry, "Read Histogram:\n");
     for (i = 0; i < 16; i++) {
-       storeAppendPrintf(sentry, "{%5d-%5d: %9d %2d%%}\n",
+       storeAppendPrintf(sentry, "%5d-%5d: %9d %2d%%\n",
            i ? (1 << (i - 1)) + 1 : 1,
            1 << i,
            IOStats.Wais.read_hist[i],
            percent(IOStats.Wais.read_hist[i], IOStats.Wais.reads));
     }
-
-    storeAppendPrintf(sentry, close_bracket);
 }
 
 static const char *
@@ -340,58 +337,56 @@ dump_peers(StoreEntry * sentry, peer * peers)
     peer *e = NULL;
     struct _domain_ping *d = NULL;
     icp_opcode op;
-    storeAppendPrintf(sentry, open_bracket);
     if (peers == NULL)
-       storeAppendPrintf(sentry, "{There are no neighbors installed.}\n");
+       storeAppendPrintf(sentry, "There are no neighbors installed.\n");
     for (e = peers; e; e = e->next) {
        assert(e->host != NULL);
-       storeAppendPrintf(sentry, "\n{%-11.11s: %s/%d/%d}\n",
+       storeAppendPrintf(sentry, "\n%-11.11s: %s/%d/%d\n",
            neighborTypeStr(e),
            e->host,
            e->http_port,
            e->icp_port);
-       storeAppendPrintf(sentry, "{Status     : %s}\n",
+       storeAppendPrintf(sentry, "Status     : %s\n",
            neighborUp(e) ? "Up" : "Down");
-       storeAppendPrintf(sentry, "{AVG RTT    : %d msec}\n", e->stats.rtt);
-       storeAppendPrintf(sentry, "{LAST QUERY : %8d seconds ago}\n",
+       storeAppendPrintf(sentry, "AVG RTT    : %d msec\n", e->stats.rtt);
+       storeAppendPrintf(sentry, "LAST QUERY : %8d seconds ago\n",
            (int) (squid_curtime - e->stats.last_query));
-       storeAppendPrintf(sentry, "{LAST REPLY : %8d seconds ago}\n",
+       storeAppendPrintf(sentry, "LAST REPLY : %8d seconds ago\n",
            (int) (squid_curtime - e->stats.last_reply));
-       storeAppendPrintf(sentry, "{PINGS SENT : %8d}\n", e->stats.pings_sent);
-       storeAppendPrintf(sentry, "{PINGS ACKED: %8d %3d%%}\n",
+       storeAppendPrintf(sentry, "PINGS SENT : %8d\n", e->stats.pings_sent);
+       storeAppendPrintf(sentry, "PINGS ACKED: %8d %3d%%\n",
            e->stats.pings_acked,
            percent(e->stats.pings_acked, e->stats.pings_sent));
-       storeAppendPrintf(sentry, "{FETCHES    : %8d %3d%%}\n",
+       storeAppendPrintf(sentry, "FETCHES    : %8d %3d%%\n",
            e->stats.fetches,
            percent(e->stats.fetches, e->stats.pings_acked));
-       storeAppendPrintf(sentry, "{IGNORED    : %8d %3d%%}\n",
+       storeAppendPrintf(sentry, "IGNORED    : %8d %3d%%\n",
            e->stats.ignored_replies,
            percent(e->stats.ignored_replies, e->stats.pings_acked));
-       storeAppendPrintf(sentry, "{Histogram of PINGS ACKED:}\n");
+       storeAppendPrintf(sentry, "Histogram of PINGS ACKED:\n");
        for (op = ICP_INVALID; op < ICP_END; op++) {
            if (e->stats.counts[op] == 0)
                continue;
-           storeAppendPrintf(sentry, "{    %12.12s : %8d %3d%%}\n",
+           storeAppendPrintf(sentry, "    %12.12s : %8d %3d%%\n",
                icp_opcode_str[op],
                e->stats.counts[op],
                percent(e->stats.counts[op], e->stats.pings_acked));
        }
        if (e->last_fail_time) {
-           storeAppendPrintf(sentry, "{Last failed connect() at: %s}\n",
+           storeAppendPrintf(sentry, "Last failed connect() at: %s\n",
                mkhttpdlogtime(&(e->last_fail_time)));
        }
-       storeAppendPrintf(sentry, "{DOMAIN LIST: ");
+       if (e->pinglist != NULL)
+           storeAppendPrintf(sentry, "DOMAIN LIST: ");
        for (d = e->pinglist; d; d = d->next) {
            if (d->do_ping)
                storeAppendPrintf(sentry, "%s ", d->domain);
            else
                storeAppendPrintf(sentry, "!%s ", d->domain);
        }
-       storeAppendPrintf(sentry, close_bracket);       /* } */
-       storeAppendPrintf(sentry, "{Keep-Alive Ratio: %d%%}\n",
+       storeAppendPrintf(sentry, "Keep-Alive Ratio: %d%%\n",
            percent(e->stats.n_keepalives_recv, e->stats.n_keepalives_sent));
     }
-    storeAppendPrintf(sentry, close_bracket);
 }
 
 #ifdef XMALLOC_STATISTICS
@@ -399,7 +394,7 @@ static void
 info_get_mallstat(int size, int number, StoreEntry * sentry)
 {
     if (number > 0)
-       storeAppendPrintf(sentry, "{\t%d = %d}\n", size, number);
+       storeAppendPrintf(sentry, "\t%d = %d\n", size, number);
 }
 #endif
 
@@ -418,9 +413,8 @@ statFiledescriptors(StoreEntry * sentry)
 {
     int i;
     fde *f;
-    storeAppendPrintf(sentry, open_bracket);
-    storeAppendPrintf(sentry, "{Active file descriptors:}\n");
-    storeAppendPrintf(sentry, "{%-4s %-6s %-4s %-7s %-7s %-21s %s}\n",
+    storeAppendPrintf(sentry, "Active file descriptors:\n");
+    storeAppendPrintf(sentry, "%-4s %-6s %-4s %-7s %-7s %-21s %s\n",
        "File",
        "Type",
        "Tout",
@@ -428,12 +422,12 @@ statFiledescriptors(StoreEntry * sentry)
        "Nwrite",
        "Remote Address",
        "Description");
-    storeAppendPrintf(sentry, "{---- ------ ---- ------- ------- --------------------- ------------------------------}\n");
+    storeAppendPrintf(sentry, "---- ------ ---- ------- ------- --------------------- ------------------------------\n");
     for (i = 0; i < Squid_MaxFD; i++) {
        f = &fd_table[i];
        if (!f->open)
            continue;
-       storeAppendPrintf(sentry, "{%4d %-6.6s %4d %7d %7d %-21s %s}\n",
+       storeAppendPrintf(sentry, "%4d %-6.6s %4d %7d %7d %-21s %s\n",
            i,
            fdstatTypeStr[f->type],
            f->timeout_handler ? (f->timeout - squid_curtime) / 60 : 0,
@@ -442,7 +436,6 @@ statFiledescriptors(StoreEntry * sentry)
            fdRemoteAddr(f),
            f->desc);
     }
-    storeAppendPrintf(sentry, close_bracket);
 }
 
 int
@@ -474,168 +467,165 @@ info_get(StoreEntry * sentry)
     runtime = tvSubDsec(squid_start, current_time);
     if (runtime == 0.0)
        runtime = 1.0;
-    storeAppendPrintf(sentry, open_bracket);
-    storeAppendPrintf(sentry, "{Squid Object Cache: Version %s}\n",
+    storeAppendPrintf(sentry, "Squid Object Cache: Version %s\n",
        version_string);
-    storeAppendPrintf(sentry, "{Start Time:\t%s}\n",
+    storeAppendPrintf(sentry, "Start Time:\t%s\n",
        mkrfc1123(squid_start.tv_sec));
-    storeAppendPrintf(sentry, "{Current Time:\t%s}\n",
+    storeAppendPrintf(sentry, "Current Time:\t%s\n",
        mkrfc1123(current_time.tv_sec));
-    storeAppendPrintf(sentry, "{Connection information for %s:}\n",
+    storeAppendPrintf(sentry, "Connection information for %s:\n",
        appname);
-    storeAppendPrintf(sentry, "{\tNumber of HTTP requests received:\t%u}\n",
+    storeAppendPrintf(sentry, "\tNumber of HTTP requests received:\t%u\n",
        Counter.client_http.requests);
-    storeAppendPrintf(sentry, "{\tNumber of ICP messages received:\t%u}\n",
+    storeAppendPrintf(sentry, "\tNumber of ICP messages received:\t%u\n",
        Counter.icp.pkts_recv);
-    storeAppendPrintf(sentry, "{\tNumber of ICP messages sent:\t%u}\n",
+    storeAppendPrintf(sentry, "\tNumber of ICP messages sent:\t%u\n",
        Counter.icp.pkts_sent);
-    storeAppendPrintf(sentry, "{\tRequest failure ratio:\t%5.2f%%\n",
+    storeAppendPrintf(sentry, "\tRequest failure ratio:\t%5.2f%%\n",
        request_failure_ratio);
 
-    storeAppendPrintf(sentry, "{\tHTTP requests per minute:\t%.1f}\n",
+    storeAppendPrintf(sentry, "\tHTTP requests per minute:\t%.1f\n",
        Counter.client_http.requests / (runtime / 60.0));
-    storeAppendPrintf(sentry, "{\tICP messages per minute:\t%.1f}\n",
+    storeAppendPrintf(sentry, "\tICP messages per minute:\t%.1f\n",
        (Counter.icp.pkts_sent + Counter.icp.pkts_recv) / (runtime / 60.0));
-    storeAppendPrintf(sentry, "{\tSelect loop called: %d times, %0.3f ms avg}\n",
+    storeAppendPrintf(sentry, "\tSelect loop called: %d times, %0.3f ms avg\n",
        Counter.select_loops, 1000.0 * runtime / Counter.select_loops);
 
-    storeAppendPrintf(sentry, "{Cache information for %s:}\n",
+    storeAppendPrintf(sentry, "Cache information for %s:\n",
        appname);
-    storeAppendPrintf(sentry, "{\tStorage Swap size:\t%d KB}\n",
+    storeAppendPrintf(sentry, "\tStorage Swap size:\t%d KB\n",
        store_swap_size);
-    storeAppendPrintf(sentry, "{\tStorage Mem size:\t%d KB}\n",
+    storeAppendPrintf(sentry, "\tStorage Mem size:\t%d KB\n",
        store_mem_size >> 10);
-    storeAppendPrintf(sentry, "{\tStorage LRU Expiration Age:\t%6.2f days}\n",
+    storeAppendPrintf(sentry, "\tStorage LRU Expiration Age:\t%6.2f days\n",
        (double) storeExpiredReferenceAge() / 86400.0);
-    storeAppendPrintf(sentry, "{\tRequests given to unlinkd:\t%d}\n",
+    storeAppendPrintf(sentry, "\tRequests given to unlinkd:\t%d\n",
        Counter.unlink.requests);
 
     squid_getrusage(&rusage);
     cputime = rusage_cputime(&rusage);
-    storeAppendPrintf(sentry, "{Resource usage for %s:}\n", appname);
-    storeAppendPrintf(sentry, "{\tUP Time:\t%.3f seconds}\n", runtime);
-    storeAppendPrintf(sentry, "{\tCPU Time:\t%.3f seconds}\n", cputime);
-    storeAppendPrintf(sentry, "{\tCPU Usage:\t%.2f%%}\n",
+    storeAppendPrintf(sentry, "Resource usage for %s:\n", appname);
+    storeAppendPrintf(sentry, "\tUP Time:\t%.3f seconds\n", runtime);
+    storeAppendPrintf(sentry, "\tCPU Time:\t%.3f seconds\n", cputime);
+    storeAppendPrintf(sentry, "\tCPU Usage:\t%.2f%%\n",
        dpercent(cputime, runtime));
-    storeAppendPrintf(sentry, "{\tMaximum Resident Size: %ld KB}\n",
+    storeAppendPrintf(sentry, "\tMaximum Resident Size: %ld KB\n",
        rusage_maxrss(&rusage));
-    storeAppendPrintf(sentry, "{\tPage faults with physical i/o: %ld}\n",
+    storeAppendPrintf(sentry, "\tPage faults with physical i/o: %ld\n",
        rusage_pagefaults(&rusage));
 
 #if HAVE_MSTATS && HAVE_GNUMALLOC_H
     ms = mstats();
-    storeAppendPrintf(sentry, "{Memory usage for %s via mstats():}\n",
+    storeAppendPrintf(sentry, "Memory usage for %s via mstats():\n",
        appname);
-    storeAppendPrintf(sentry, "{\tTotal space in arena:  %6d KB}\n",
+    storeAppendPrintf(sentry, "\tTotal space in arena:  %6d KB\n",
        ms.bytes_total >> 10);
-    storeAppendPrintf(sentry, "{\tTotal free:            %6d KB %d%%}\n",
+    storeAppendPrintf(sentry, "\tTotal free:            %6d KB %d%%\n",
        ms.bytes_free >> 10, percent(ms.bytes_free, ms.bytes_total));
 #elif HAVE_MALLINFO
     mp = mallinfo();
-    storeAppendPrintf(sentry, "{Memory usage for %s via mallinfo():}\n",
+    storeAppendPrintf(sentry, "Memory usage for %s via mallinfo():\n",
        appname);
-    storeAppendPrintf(sentry, "{\tTotal space in arena:  %6d KB}\n",
+    storeAppendPrintf(sentry, "\tTotal space in arena:  %6d KB\n",
        mp.arena >> 10);
-    storeAppendPrintf(sentry, "{\tOrdinary blocks:       %6d KB %6d blks}\n",
+    storeAppendPrintf(sentry, "\tOrdinary blocks:       %6d KB %6d blks\n",
        mp.uordblks >> 10, mp.ordblks);
-    storeAppendPrintf(sentry, "{\tSmall blocks:          %6d KB %6d blks}\n",
+    storeAppendPrintf(sentry, "\tSmall blocks:          %6d KB %6d blks\n",
        mp.usmblks >> 10, mp.smblks);
-    storeAppendPrintf(sentry, "{\tHolding blocks:        %6d KB %6d blks}\n",
+    storeAppendPrintf(sentry, "\tHolding blocks:        %6d KB %6d blks\n",
        mp.hblkhd >> 10, mp.hblks);
-    storeAppendPrintf(sentry, "{\tFree Small blocks:     %6d KB}\n",
+    storeAppendPrintf(sentry, "\tFree Small blocks:     %6d KB\n",
        mp.fsmblks >> 10);
-    storeAppendPrintf(sentry, "{\tFree Ordinary blocks:  %6d KB}\n",
+    storeAppendPrintf(sentry, "\tFree Ordinary blocks:  %6d KB\n",
        mp.fordblks >> 10);
     t = mp.uordblks + mp.usmblks + mp.hblkhd;
-    storeAppendPrintf(sentry, "{\tTotal in use:          %6d KB %d%%}\n",
+    storeAppendPrintf(sentry, "\tTotal in use:          %6d KB %d%%\n",
        t >> 10, percent(t, mp.arena));
     t = mp.fsmblks + mp.fordblks;
-    storeAppendPrintf(sentry, "{\tTotal free:            %6d KB %d%%}\n",
+    storeAppendPrintf(sentry, "\tTotal free:            %6d KB %d%%\n",
        t >> 10, percent(t, mp.arena));
 #if HAVE_EXT_MALLINFO
-    storeAppendPrintf(sentry, "{\tmax size of small blocks:\t%d}\n", mp.mxfast);
-    storeAppendPrintf(sentry, "{\tnumber of small blocks in a holding block:\t%d}\n",
+    storeAppendPrintf(sentry, "\tmax size of small blocks:\t%d\n", mp.mxfast);
+    storeAppendPrintf(sentry, "\tnumber of small blocks in a holding block:\t%d\n",
        mp.nlblks);
-    storeAppendPrintf(sentry, "{\tsmall block rounding factor:\t%d}\n", mp.grain);
-    storeAppendPrintf(sentry, "{\tspace (including overhead) allocated in ord. blks:\t%d}\n"
+    storeAppendPrintf(sentry, "\tsmall block rounding factor:\t%d\n", mp.grain);
+    storeAppendPrintf(sentry, "\tspace (including overhead) allocated in ord. blks:\t%d\n"
        ,mp.uordbytes);
-    storeAppendPrintf(sentry, "{\tnumber of ordinary blocks allocated:\t%d}\n",
+    storeAppendPrintf(sentry, "\tnumber of ordinary blocks allocated:\t%d\n",
        mp.allocated);
-    storeAppendPrintf(sentry, "{\tbytes used in maintaining the free tree:\t%d}\n",
+    storeAppendPrintf(sentry, "\tbytes used in maintaining the free tree:\t%d\n",
        mp.treeoverhead);
 #endif /* HAVE_EXT_MALLINFO */
 #endif /* HAVE_MALLINFO */
 
-    storeAppendPrintf(sentry, "{File descriptor usage for %s:}\n", appname);
-    storeAppendPrintf(sentry, "{\tMaximum number of file descriptors:   %4d}\n",
+    storeAppendPrintf(sentry, "File descriptor usage for %s:\n", appname);
+    storeAppendPrintf(sentry, "\tMaximum number of file descriptors:   %4d\n",
        Squid_MaxFD);
-    storeAppendPrintf(sentry, "{\tLargest file desc currently in use:   %4d}\n",
+    storeAppendPrintf(sentry, "\tLargest file desc currently in use:   %4d\n",
        Biggest_FD);
-    storeAppendPrintf(sentry, "{\tNumber of file desc currently in use: %4d}\n",
+    storeAppendPrintf(sentry, "\tNumber of file desc currently in use: %4d\n",
        Number_FD);
-    storeAppendPrintf(sentry, "{\tAvailable number of file descriptors: %4d}\n",
+    storeAppendPrintf(sentry, "\tAvailable number of file descriptors: %4d\n",
        Squid_MaxFD - Number_FD);
-    storeAppendPrintf(sentry, "{\tReserved number of file descriptors:  %4d}\n",
+    storeAppendPrintf(sentry, "\tReserved number of file descriptors:  %4d\n",
        RESERVED_FD);
 
-    storeAppendPrintf(sentry, "{Internal Data Structures:}\n");
-    storeAppendPrintf(sentry, "{\t%6d StoreEntries}\n",
+    storeAppendPrintf(sentry, "Internal Data Structures:\n");
+    storeAppendPrintf(sentry, "\t%6d StoreEntries\n",
        memInUse(MEM_STOREENTRY));
-    storeAppendPrintf(sentry, "{\t%6d StoreEntries with MemObjects}\n",
+    storeAppendPrintf(sentry, "\t%6d StoreEntries with MemObjects\n",
        memInUse(MEM_MEMOBJECT));
-    storeAppendPrintf(sentry, "{\t%6d StoreEntries with MemObject Data}\n",
+    storeAppendPrintf(sentry, "\t%6d StoreEntries with MemObject Data\n",
        memInUse(MEM_MEM_HDR));
-    storeAppendPrintf(sentry, "{\t%6d Hot Object Cache Items}\n",
+    storeAppendPrintf(sentry, "\t%6d Hot Object Cache Items\n",
        meta_data.hot_vm);
 
-    storeAppendPrintf(sentry, "{\t%-25.25s                      = %6d KB}\n",
+    storeAppendPrintf(sentry, "\t%-25.25s                      = %6d KB\n",
        "StoreEntry Keys",
        meta_data.store_keys >> 10);
 
-    storeAppendPrintf(sentry, "{\t%-25.25s %7d x %4d bytes = %6d KB}\n",
+    storeAppendPrintf(sentry, "\t%-25.25s %7d x %4d bytes = %6d KB\n",
        "IPCacheEntry",
        meta_data.ipcache_count,
        (int) sizeof(ipcache_entry),
        (int) (meta_data.ipcache_count * sizeof(ipcache_entry) >> 10));
 
-    storeAppendPrintf(sentry, "{\t%-25.25s %7d x %4d bytes = %6d KB}\n",
+    storeAppendPrintf(sentry, "\t%-25.25s %7d x %4d bytes = %6d KB\n",
        "FQDNCacheEntry",
        meta_data.fqdncache_count,
        (int) sizeof(fqdncache_entry),
        (int) (meta_data.fqdncache_count * sizeof(fqdncache_entry) >> 10));
 
-    storeAppendPrintf(sentry, "{\t%-25.25s %7d x %4d bytes = %6d KB}\n",
+    storeAppendPrintf(sentry, "\t%-25.25s %7d x %4d bytes = %6d KB\n",
        "Hash link",
        hash_links_allocated,
        (int) sizeof(hash_link),
        (int) (hash_links_allocated * sizeof(hash_link) >> 10));
 
-    storeAppendPrintf(sentry, "{\t%-25.25s %7d x %4d bytes = %6d KB}\n",
+    storeAppendPrintf(sentry, "\t%-25.25s %7d x %4d bytes = %6d KB\n",
        "NetDB Peer Entries",
        meta_data.netdb_peers,
        (int) sizeof(struct _net_db_peer),
                     (int) (meta_data.netdb_peers * sizeof(struct _net_db_peer) >> 10));
 
-    storeAppendPrintf(sentry, "{\t%-25.25s %7d x %4d bytes = %6d KB}\n",
+    storeAppendPrintf(sentry, "\t%-25.25s %7d x %4d bytes = %6d KB\n",
        "ClientDB Entries",
        meta_data.client_info,
        client_info_sz,
        (int) (meta_data.client_info * client_info_sz >> 10));
 
-    storeAppendPrintf(sentry, "{\t%-25.25s                      = %6d KB}\n",
+    storeAppendPrintf(sentry, "\t%-25.25s                      = %6d KB\n",
        "Miscellaneous",
        meta_data.misc >> 10);
 
-    storeAppendPrintf(sentry, "{\t%-25.25s                      = %6d KB}\n",
+    storeAppendPrintf(sentry, "\t%-25.25s                      = %6d KB\n",
        "Total Accounted",
        statMemoryAccounted() >> 10);
 
 #if XMALLOC_STATISTICS
-    storeAppendPrintf(sentry, "{Memory allocation statistics}\n");
+    storeAppendPrintf(sentry, "Memory allocation statistics\n");
     malloc_statistics(info_get_mallstat, sentry);
 #endif
-
-    storeAppendPrintf(sentry, close_bracket);
 }
 
 static void