This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: gcc | |
version: 0 # the version of the snap | |
summary: ... | |
description: ... | |
apps: | |
gcc: | |
command: usr/bin/gcc --sysroot=/snap/gcc/current | |
plugs: [home] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
exec $0.real --sysroot=$SNAP $* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"time" | |
"github.com/juju/gnuflag" | |
) | |
type waitFlag struct { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"log" | |
"github.com/Azure/azure-sdk-for-go/arm/resources/subscriptions" | |
"github.com/Azure/go-autorest/autorest/azure" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main { | |
public static void main(String []args) throws Exception { | |
pushy.Client client = new pushy.Client("local:", null); | |
try { | |
NumpyModule m = new NumpyModule(client); | |
System.out.println(m.array(m.mat("1 2; 3 4"))); | |
} finally { | |
client.close(); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: "2.0" | |
info: | |
description: Elastic APM intake API | |
title: Elastic APM | |
version: "1.0" | |
schemes: | |
- http | |
basePath: "/v1" | |
paths: | |
/transactions: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// +build gofuzz | |
package model | |
import ( | |
"bytes" | |
"encoding/json" | |
"github.com/elastic/apm-agent-go/internal/fastjson" | |
error_processor "github.com/elastic/apm-server/processor/error" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"net/http" | |
"github.com/elastic/apm-agent-go/module/apmhttp" | |
"github.com/elastic/apm-agent-go/module/apmsql" | |
_ "github.com/elastic/apm-agent-go/module/apmsql/sqlite3" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"compress/gzip" | |
"compress/zlib" | |
"context" | |
"encoding/json" | |
"flag" | |
"fmt" | |
"io" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/docs/generated/settings/settings.html b/docs/generated/settings/settings.html | |
index 68d2949eaa..84d0f67f56 100644 | |
--- a/docs/generated/settings/settings.html | |
+++ b/docs/generated/settings/settings.html | |
@@ -77,6 +77,7 @@ | |
<tr><td><code>timeseries.storage.30m_resolution_ttl</code></td><td>duration</td><td><code>2160h0m0s</code></td><td>the maximum age of time series data stored at the 30 minute resolution. Data older than this is subject to deletion.</td></tr> | |
<tr><td><code>timeseries.storage.enabled</code></td><td>boolean</td><td><code>true</code></td><td>if set, periodic timeseries data is stored within the cluster; disabling is not recommended unless you are storing the data elsewhere</td></tr> | |
<tr><td><code>trace.debug.enable</code></td><td>boolean</td><td><code>false</code></td><td>if set, traces for recent requests can be seen in the /debug page</td></tr> | |
+<tr><td><code>trace.elastic.server</code></td><td>string</td><td><code></code></td><td>if set, traces go to the given Elastic APM server |