We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae60909 commit 97aa39bCopy full SHA for 97aa39b
.gitignore
@@ -9,4 +9,6 @@ worker/
9
node_modules/
10
.cargo-ok
11
.env
12
-wrangler.toml
+.wrangler
13
+data/
14
+config/
wrangler.toml
@@ -0,0 +1,13 @@
1
+#:schema node_modules/wrangler/config-schema.json
2
+name = "cf-metrics"
3
+tail_consumers = [{service = "cf-metrics-tail"}]
4
+main = "index.js"
5
+compatibility_date = "2024-12-05"
6
+compatibility_flags = ["nodejs_compat"]
7
+send_metrics = false
8
+
+[vars]
+INFLUX_URL = "http://localhost:8086"
+INFLUX_TOKEN = "example"
+INFLUX_ORG = "example"
+INFLUX_BUCKET = "example"
0 commit comments