Skip to content

Commit e6584ed

Browse files
authored
Update plugin to support Grafana 10 (#30)
Fixes #26
1 parent ea7ea53 commit e6584ed

8 files changed

+21
-18
lines changed

dist/MANIFEST.txt

+11-11
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ Hash: SHA512
88
"signedByOrg": "parseable",
99
"signedByOrgName": "parseable",
1010
"plugin": "parseable-parseable-datasource",
11-
"version": "1.0.2",
12-
"time": 1678169515198,
11+
"version": "1.1.0",
12+
"time": 1687094992195,
1313
"keyId": "7e4d0c6a708866e7",
1414
"files": {
1515
"LICENSE": "20b067f86de375aae6db0f283ab2e65de24d537733b89bd58432c101259d84cf",
1616
"CHANGELOG.md": "ba613d6f914b27dce9ace4d8c0cb074273c9eb6c536d8e7ac24c5ce6ae941fd0",
17-
"module.js.map": "c3eb00d2db427c37d1a8dbd72c46a1f91a16817cce31e10c8c1e0d12b06e2845",
18-
"plugin.json": "f8966d9ecd731dc904e033d179218965fea4dab8a9483a28ce33f857d89f105c",
17+
"module.js.map": "64ca331723d7dd3a66be94be8b0f1b4d28414b26594e40297900fd5225272782",
18+
"plugin.json": "58f1a4e58350165a5366a7beb6e8e0c74770d420da48378cef28c02c84c54dc5",
1919
"README.md": "030a05e0d49d3746ef272d53c99936e3b98e3219a1cac96ca1df48ddee475934",
2020
"img/configuration.png": "c545a51bcc88809b2b4f87aac517a7d27ad61281344b0485c9826370b915b4d8",
2121
"img/log-view-text.png": "8c6555af9c391cb1a8368c79b9bcc7386887beeea061e3483b0e020feec9d73d",
@@ -30,18 +30,18 @@ Hash: SHA512
3030
"stories/assets/code-brackets.svg": "9ef6443ebd43351be1a6edbab492003b84f2e30c8f80207ec8c4138fa440f7f4",
3131
"stories/assets/flow.svg": "275142c67bb630246cbdfb0fc3493f17dd695544777ec8da852dbbe94976d323",
3232
"stories/assets/repo.svg": "fb4ece472009833a03b9f1fbc775f13a010d9432cae3844e8b05710ba028100d",
33-
"module.js": "15358a59697f68c4f7951c04b481c01c76989211702ccd762a247d6b4d7d1f56",
33+
"module.js": "ff639bd22b719cb21f54ce99793a1b75f97c519ce06f48154c29c8e58db11c9f",
3434
"dashboards/log-view.json": "224d921c8a5a4c3ed426de83f8f70ddb6406690687423b15e6e5822190bcb64c"
3535
}
3636
}
3737
-----BEGIN PGP SIGNATURE-----
3838
Version: OpenPGP.js v4.10.10
3939
Comment: https://openpgpjs.org
4040

41-
wrgEARMKAAYFAmQG1asAIQkQfk0ManCIZucWIQTzOyW2kQdOhGNlcPN+TQxq
42-
cIhm55wRAgYtpv30X4rrnRzulBUA5hUEfEFEhKDzcO1r1wDMFwcFMIouTNEY
43-
5BZN7+1rhq1kJ/9QFwD7cEV5I7w53ivWI1boLQIJAazsCIsKX0cos12s+vwy
44-
zfUAAsOiPtEhfPeKfb7mhVyUOwZ9lKGzzjxJqh7iozuWz8OgixbsE6ZZyt7d
45-
TE1nbEN/
46-
=7oRX
41+
wrgEARMKAAYFAmSPBtAAIQkQfk0ManCIZucWIQTzOyW2kQdOhGNlcPN+TQxq
42+
cIhm59M/AgkBRslMtj7a7eywRFrvZrJ09Kq3Z26MJMvQfPN8AkT3//6FVFaQ
43+
yZSbsCFS5uakZVULMas9pVEFIZPEUQLXGKDOhcACCOmsPYoq8Yi7AY2ChM7F
44+
VSfMYlkWf8eY0p23JSCSmU3Q85ihxorjg3/R5FbNBR3I0Helx6eTEbeGoQN1
45+
egI/IQUg
46+
=+Iyc
4747
-----END PGP SIGNATURE-----

dist/module.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/module.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plugin.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"id": "parseable-parseable-datasource",
66
"logs": true,
77
"metrics": true,
8+
"tracing": true,
89
"info": {
910
"description": "Parseable is an open source, Kubernetes native, log storage and observability platform. This plugin allows you to visualize your Parseable logs in Grafana.",
1011
"author": {
@@ -25,8 +26,8 @@
2526
{"name": "Log Explorer", "path": "img/log-view-text.png"},
2627
{"name": "Log Dashboard", "path": "img/log-visualisation.png"}
2728
],
28-
"version": "1.0.2",
29-
"updated": "2023-03-07"
29+
"version": "1.1.0",
30+
"updated": "2023-06-18"
3031
},
3132
"routes": [
3233
{
@@ -41,7 +42,7 @@
4142
}
4243
],
4344
"dependencies": {
44-
"grafanaDependency": "^9.0.0",
45+
"grafanaDependency": ">=9.0.0",
4546
"plugins": []
4647
}
4748
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parseable",
3-
"version": "1.0.2",
3+
"version": "1.1.0",
44
"description": "Parseable is an open source, Kubernetes native, log storage and observability platform. This plugin allows you to visualize your Parseable logs in Grafana.",
55
"scripts": {
66
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",
1000 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
76515d5b83c20899a02aa21643c4510c95f57d6c

src/plugin.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"id": "parseable-parseable-datasource",
66
"logs": true,
77
"metrics": true,
8+
"tracing": true,
89
"info": {
910
"description": "Parseable is an open source, Kubernetes native, log storage and observability platform. This plugin allows you to visualize your Parseable logs in Grafana.",
1011
"author": {
@@ -41,7 +42,7 @@
4142
}
4243
],
4344
"dependencies": {
44-
"grafanaDependency": "^9.0.0",
45+
"grafanaDependency": ">=9.0.0",
4546
"plugins": []
4647
}
4748
}

0 commit comments

Comments
 (0)