forked from supabase-community/chatgpt-your-files
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslack
More file actions
1816 lines (1816 loc) · 265 KB
/
slack
File metadata and controls
1816 lines (1816 loc) · 265 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues?page=1#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues?page=1) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues?page=1) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues?page=1) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\nPreview\n\n# Issues\n\nSearch Issues\n\nis:issuestate:open\n\nis:issue state:open\n\nClear filter\n\nSearch\n\n[Labels](https://github.com/signoz/signoz-web/labels) [Milestones](https://github.com/signoz/signoz-web/milestones) [New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues?page=1)\n\n## Search results\n\n- [Open\\\\\n167 (167)](https://github.com/signoz/signoz-web/issues)\n- [Closed\\\\\n83 (83)](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aclosed)\n\nAuthor\n\nLabels\n\nProjects\n\nMilestones\n\nAssignees\n\nTypes\n\nNewest\n\n### [\\[DOCS\\] Trace Details page](https://github.com/signoz/signoz-web/issues/1157)\n\nStatus: Open.\n\n#1157In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Feb 6, 2025\n\n[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3ACalm-Rock)\n\n### [\\[DOCS\\] Temporal.io metrics to SigNoz](https://github.com/signoz/signoz-web/issues/1156)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AECP)\n\nStatus: Open.\n\n#1156In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Feb 5, 2025\n\n### [CI/CD monitoring doc](https://github.com/signoz/signoz-web/issues/1153)\n\nStatus: Open.\n\n#1153In signoz/signoz-web;\n\n· [makeavish](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3Amakeavish) opened on Feb 4, 2025\n\n[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3ACalm-Rock)\n\n### [How to migrate from SigNoz self hosted to SigNoz Cloud](https://github.com/signoz/signoz-web/issues/1152)\n\nStatus: Open.\n\n[Task](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20type%3ATask)\n\n#1152In signoz/signoz-web;\n\n· [makeavish](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3Amakeavish) opened on Feb 4, 2025\n\n[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3ACalm-Rock)[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3Agrandwizard28)\n\n### [Create python manual instrumentation docs from blog](https://github.com/signoz/signoz-web/issues/1127)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AECP)\n\nStatus: Open.\n\n#1127In signoz/signoz-web;\n\n· [makeavish](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3Amakeavish) opened on Jan 27, 2025\n\n[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3ACalm-Rock)\n\n### [Link k8s exclude logs to guide to drop logs doc](https://github.com/signoz/signoz-web/issues/1126)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\nStatus: Open.\n\n[Task](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20type%3ATask)\n\n#1126In signoz/signoz-web;\n\n· [makeavish](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3Amakeavish) opened on Jan 27, 2025\n\n[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3ACalm-Rock)\n\n### [\\[DOCS\\]\\[GUIDE\\] Multiline logs to single line logs](https://github.com/signoz/signoz-web/issues/1124)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AECP)\n\nStatus: Open.\n\n#1124In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Jan 26, 2025\n\n### [How SigNoz pricing works](https://github.com/signoz/signoz-web/issues/1123)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\nStatus: Open.\n\n#1123In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Jan 26, 2025\n\n### [Nginx application metrics](https://github.com/signoz/signoz-web/issues/1122)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AECP)\n\nStatus: Open.\n\n#1122In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Jan 26, 2025\n\n### [\\[DOCS\\] Cloudflare worker instrumentation](https://github.com/signoz/signoz-web/issues/1120)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AECP)\n\nStatus: Open.\n\n#1120In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Jan 26, 2025\n\n### [\\[DOCS\\] .NET troubleshooting docs](https://github.com/signoz/signoz-web/issues/1119)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AECP)\n\nStatus: Open.\n\n#1119In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Jan 26, 2025\n\n### [\\[DOCS\\] Auto instrument Wordpress](https://github.com/signoz/signoz-web/issues/1118)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AECP)\n\nStatus: Open.\n\n#1118In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Jan 26, 2025\n\n### [\\[DOCS\\] Update Golang Instructions](https://github.com/signoz/signoz-web/issues/1117)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AECP)\n\nStatus: Open.\n\n#1117In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Jan 26, 2025\n\n### [\\[DOCS\\] Add docs for logs and traces correlation](https://github.com/signoz/signoz-web/issues/1115)\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AECP)\n\nStatus: Open.\n\n#1115In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Jan 23, 2025\n\n### [\\[DOCS\\] Add deployment.environment resource attribute](https://github.com/signoz/signoz-web/issues/1114)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AECP)\n\nStatus: Open.\n\n#1114In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Jan 23, 2025\n\n### [\\[DOCS\\] Instructions for Windows](https://github.com/signoz/signoz-web/issues/1112)\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AECP)\n\nStatus: Open.\n\n#1112In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Jan 23, 2025\n\n### [Create workflow for 404 links](https://github.com/signoz/signoz-web/issues/1111)\n\n[enhancementNew feature or request](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Aenhancement) New feature or request\n\nStatus: Open.\n\n#1111In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Jan 23, 2025\n\n### [\\[DOCS\\] Add resource processor](https://github.com/signoz/signoz-web/issues/1108)\n\n[documentation-update](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation-update)\n\nStatus: Open.\n\n#1108In signoz/signoz-web;\n\n· [nityanandagohain](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3Anityanandagohain) opened on Jan 22, 2025\n\n[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3ACalm-Rock)\n\n### [\\[DOCS\\] Docs on pipelines](https://github.com/signoz/signoz-web/issues/1107)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\n[ICP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AICP)\n\nStatus: Open.\n\n#1107In signoz/signoz-web;\n\n· [nityanandagohain](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3Anityanandagohain) opened on Jan 22, 2025\n\n[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3ACalm-Rock)\n\n### [\\[DOCS\\] Go Auto instrumentation](https://github.com/signoz/signoz-web/issues/1090)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3AECP)\n\nStatus: Open.\n\n#1090In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Jan 16, 2025\n\n[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3ACalm-Rock)\n\n### [\\[DOCS\\] Necessary permission for Clickhouse user.](https://github.com/signoz/signoz-web/issues/1062)\n\nStatus: Open.\n\n#1062In signoz/signoz-web;\n\n· [TheShubhendra](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ATheShubhendra) opened on Dec 24, 2024\n\n1 comment\n\n### [\\[DOCS\\] Timezone feature docs](https://github.com/signoz/signoz-web/issues/1037)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\nStatus: Open.\n\n#1037In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Dec 10, 2024\n\n1 comment\n\n[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3Aahmadshaheer)[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3ACalm-Rock)\n\n### [\\[DOCS\\] Improve Operate SigNoz Page](https://github.com/signoz/signoz-web/issues/1035)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Adocumentation) Improvements or additions to documentation\n\nStatus: Open.\n\n#1035In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Dec 8, 2024\n\n[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3ACalm-Rock)\n\n### [`yarn start` doesn't reflect updates on `.mdx` on local](https://github.com/signoz/signoz-web/issues/1030)\n\nStatus: Open.\n\n#1030In signoz/signoz-web;\n\n· [Rindrics](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ARindrics) opened on Dec 7, 2024\n\n### [\\[EPIC\\] Frontend bugs/features in documentation](https://github.com/signoz/signoz-web/issues/1021)\n\n[frontend](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20label%3Afrontend)\n\nStatus: Open.\n\n#1021In signoz/signoz-web;\n\n· [Calm-Rock](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20author%3ACalm-Rock) opened on Dec 5, 2024\n\n[](https://github.com/signoz/signoz-web/issues?q=is%3Aissue%20state%3Aopen%20assignee%3Asawhil)\n\nYou can’t perform that action at this time.\n\n\n0 suggestions",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues?page=1",
"ogUrl": "https://github.com/SigNoz/signoz-web",
"title": "Issues · signoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web",
"robots": "noindex, follow",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/664b42edae9dd8b7f1252e299cf338668987ce648235d6af66af24b6df501e3d/SigNoz/signoz-web",
"ogTitle": "SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/664b42edae9dd8b7f1252e299cf338668987ce648235d6af66af24b6df501e3d/SigNoz/signoz-web",
"og:title": "SigNoz/signoz-web",
"scrapeId": "e0045284-afc3-4150-9360-84d5f29fa147",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues?page=1",
"ogSiteName": "GitHub",
"request-id": "B5F7:BF12F:5418D83:762444B:67AB6A8E",
"statusCode": 200,
"user-login": "",
"description": "SigNoz Website. Contribute to SigNoz/signoz-web development by creating an account on GitHub.",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "SigNoz Website. Contribute to SigNoz/signoz-web development by creating an account on GitHub.",
"og:site_name": "GitHub",
"route-action": "index",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "18d6d862515379d4b77c9c9ea55d11d6eac2eb62da98314de2a958dc6df748e0",
"ogDescription": "SigNoz Website. Contribute to SigNoz/signoz-web development by creating an account on GitHub.",
"route-pattern": "/:user_id/:repository/issues(.:format)",
"twitter:image": "https://opengraph.githubassets.com/664b42edae9dd8b7f1252e299cf338668987ce648235d6af66af24b6df501e3d/SigNoz/signoz-web",
"twitter:title": "SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "SigNoz Website. Contribute to SigNoz/signoz-web development by creating an account on GitHub.",
"og:image:width": "1200",
"html-safe-nonce": "334ad615644cad12dd59ac6472b7b24f8dea4f64e0e31ab59400ceffe5946d24",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCNUY3OkJGMTJGOjU0MThEODM6NzYyNDQ0Qjo2N0FCNkE4RSIsInZpc2l0b3JfaWQiOiIzNzI3MTk1NTQ3NzQzNTEzMjMwIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/signoz/signoz-web/issues?page=1",
"route-controller": "issues",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/issues/index",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": [
"no-preview",
"no-cache"
],
"twitter:description": "SigNoz Website. Contribute to SigNoz/signoz-web development by creating an account on GitHub.",
"hovercard-subject-tag": "repository:799536260",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1119#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1119) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1119) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1119) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# \\[DOCS\\] .NET troubleshooting docs\\#1119\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1119)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1119)\n\nCopy link\n\nOpen\n\nOpen\n\n[\\[DOCS\\] .NET troubleshooting docs](https://github.com/signoz/signoz-web/issues/1119#top)#1119\n\nCopy link\n\nLabels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[](https://github.com/Calm-Rock)\n\n## Description\n\n[](https://github.com/Calm-Rock)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nopened [on Jan 26, 2025](https://github.com/SigNoz/signoz-web/issues/1119#issue-2812026731)\n\nWrite description from this issue:\n\n- [https://github.com/SigNoz/engineering-pod/issues/1936](https://github.com/SigNoz/engineering-pod/issues/1936)\n\n## Activity\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nadded\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[on Jan 26, 2025](https://github.com/SigNoz/signoz-web/issues/1119#event-16072257190)\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1119)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1119)\n\n## Metadata\n\n### Assignees\n\nNo one assigned\n\n### Labels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n### Type\n\nNo type\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/Calm-Rock)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\n\\[DOCS\\] .NET troubleshooting docs · Issue #1119 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1119",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1119",
"title": "[DOCS] .NET troubleshooting docs · Issue #1119 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1119",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/4b54bebf06409cf976b66965c401742d8f1378bb1abbb560d63ed4bd7a6dd8c9/SigNoz/signoz-web/issues/1119",
"ogTitle": "[DOCS] .NET troubleshooting docs · Issue #1119 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/4b54bebf06409cf976b66965c401742d8f1378bb1abbb560d63ed4bd7a6dd8c9/SigNoz/signoz-web/issues/1119",
"og:title": "[DOCS] .NET troubleshooting docs · Issue #1119 · SigNoz/signoz-web",
"scrapeId": "33c36bff-48ba-43fd-804b-0813bdf2a10e",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1119",
"ogSiteName": "GitHub",
"request-id": "A47D:11A0F6:5521341:771B1D6:67AB6A96",
"statusCode": 200,
"user-login": "",
"description": "Write description from this issue: SigNoz/engineering-pod#1936",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "Write description from this issue: SigNoz/engineering-pod#1936",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "3abe05be5d7f14ab07acc44cb9fef67cf8d8afe160d39d07230ab3b6f604978f",
"ogDescription": "Write description from this issue: SigNoz/engineering-pod#1936",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/4b54bebf06409cf976b66965c401742d8f1378bb1abbb560d63ed4bd7a6dd8c9/SigNoz/signoz-web/issues/1119",
"twitter:title": "[DOCS] .NET troubleshooting docs · Issue #1119 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "Write description from this issue: SigNoz/engineering-pod#1936",
"og:image:width": "1200",
"html-safe-nonce": "fd083de21cd38939ebab80ef9e087c1bee94415bb4427e36d8b82f246542522b",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNDdEOjExQTBGNjo1NTIxMzQxOjc3MUIxRDY6NjdBQjZBOTYiLCJ2aXNpdG9yX2lkIjoiMjYwMzA4NTc5MTg1OTc5NjYzMCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1119/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "Calm-Rock",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "Write description from this issue: SigNoz/engineering-pod#1936",
"hovercard-subject-tag": "issue:2812026731",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1153#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1153) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1153) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1153) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# CI/CD monitoring doc\\#1153\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1153)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1153)\n\nCopy link\n\nOpen\n\nOpen\n\n[CI/CD monitoring doc](https://github.com/signoz/signoz-web/issues/1153#top)#1153\n\nCopy link\n\nAssignees\n\n[](https://github.com/Calm-Rock)\n\n[](https://github.com/makeavish)\n\n## Description\n\n[](https://github.com/makeavish)\n\n[makeavish](https://github.com/makeavish)\n\nopened [on Feb 4, 2025](https://github.com/SigNoz/signoz-web/issues/1153#issue-2830843289) · edited by [makeavish](https://github.com/makeavish)\n\nEdits\n\nWe already have Jenkins and ArgoCD dashboard - [https://github.com/SigNoz/dashboards](https://github.com/SigNoz/dashboards)\n\nRef - [https://www.cloudraft.io/blog/cicd-observability-using-opentelemetry](https://www.cloudraft.io/blog/cicd-observability-using-opentelemetry)\n\n## Activity\n\n[makeavish](https://github.com/makeavish)\n\nassigned\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\n[on Feb 4, 2025](https://github.com/SigNoz/signoz-web/issues/1153#event-16182462787)\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1153)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1153)\n\n## Metadata\n\n### Assignees\n\n- [\\\\\n\\\\\nCalm-Rock](https://github.com/Calm-Rock)\n\n### Labels\n\nNo labels\n\nNo labels\n\n### Type\n\nNo type\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/makeavish)[](https://github.com/Calm-Rock)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\nCI/CD monitoring doc · Issue #1153 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1153",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1153",
"title": "CI/CD monitoring doc · Issue #1153 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1153",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/400b3c118e2736153e15e8d0380a7e138627d5c122feb6e016185a4baa9d3ea4/SigNoz/signoz-web/issues/1153",
"ogTitle": "CI/CD monitoring doc · Issue #1153 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/400b3c118e2736153e15e8d0380a7e138627d5c122feb6e016185a4baa9d3ea4/SigNoz/signoz-web/issues/1153",
"og:title": "CI/CD monitoring doc · Issue #1153 · SigNoz/signoz-web",
"scrapeId": "093d8763-4557-444d-b006-6941ff9e53ce",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1153",
"ogSiteName": "GitHub",
"request-id": "8AAF:3F801F:532F88F:74247C7:67AB6A92",
"statusCode": 200,
"user-login": "",
"description": "We already have Jenkins and ArgoCD dashboard - https://github.com/SigNoz/dashboards Ref - https://www.cloudraft.io/blog/cicd-observability-using-opentelemetry",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "We already have Jenkins and ArgoCD dashboard - https://github.com/SigNoz/dashboards Ref - https://www.cloudraft.io/blog/cicd-observability-using-opentelemetry",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "b106a546c6247742e646a74a84a98ce5333aaa35842202de82ddec6fccac1325",
"ogDescription": "We already have Jenkins and ArgoCD dashboard - https://github.com/SigNoz/dashboards Ref - https://www.cloudraft.io/blog/cicd-observability-using-opentelemetry",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/400b3c118e2736153e15e8d0380a7e138627d5c122feb6e016185a4baa9d3ea4/SigNoz/signoz-web/issues/1153",
"twitter:title": "CI/CD monitoring doc · Issue #1153 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "We already have Jenkins and ArgoCD dashboard - https://github.com/SigNoz/dashboards Ref - https://www.cloudraft.io/blog/cicd-observability-using-opentelemetry",
"og:image:width": "1200",
"html-safe-nonce": "a8386d8b410d146b5be4c1f5384d6c3834c220fb1e9db1e5f8d1acdd783b4601",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4QUFGOjNGODAxRjo1MzJGODhGOjc0MjQ3Qzc6NjdBQjZBOTIiLCJ2aXNpdG9yX2lkIjoiNzE3Mzc1OTAwODY2Mzg5MDU3OCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1153/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "makeavish",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "We already have Jenkins and ArgoCD dashboard - https://github.com/SigNoz/dashboards Ref - https://www.cloudraft.io/blog/cicd-observability-using-opentelemetry",
"hovercard-subject-tag": "issue:2830843289",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1156#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1156) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1156) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1156) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# \\[DOCS\\] Temporal.io metrics to SigNoz\\#1156\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1156)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1156)\n\nCopy link\n\nOpen\n\nOpen\n\n[\\[DOCS\\] Temporal.io metrics to SigNoz](https://github.com/signoz/signoz-web/issues/1156#top)#1156\n\nCopy link\n\nLabels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[](https://github.com/Calm-Rock)\n\n## Description\n\n[](https://github.com/Calm-Rock)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nopened [on Feb 5, 2025](https://github.com/SigNoz/signoz-web/issues/1156#issue-2834544424)\n\nCreate comprehensive documentation to monitor **Temporal Cloud** and **self-hosted Temporal** clusters using **SigNoz** .\n\n## Activity\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nadded\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22)\n\n[on Feb 5, 2025](https://github.com/SigNoz/signoz-web/issues/1156#event-16204277233)\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1156)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1156)\n\n## Metadata\n\n### Assignees\n\nNo one assigned\n\n### Labels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n### Type\n\nNo type\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/Calm-Rock)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\n\\[DOCS\\] Temporal.io metrics to SigNoz · Issue #1156 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1156",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1156",
"title": "[DOCS] Temporal.io metrics to SigNoz · Issue #1156 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1156",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/2e6a18b79454329200a9bf1b29bd5e65b79fabb26aad75dd8f52d01a0a4f345e/SigNoz/signoz-web/issues/1156",
"ogTitle": "[DOCS] Temporal.io metrics to SigNoz · Issue #1156 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/2e6a18b79454329200a9bf1b29bd5e65b79fabb26aad75dd8f52d01a0a4f345e/SigNoz/signoz-web/issues/1156",
"og:title": "[DOCS] Temporal.io metrics to SigNoz · Issue #1156 · SigNoz/signoz-web",
"scrapeId": "82ea9d80-d91e-4152-bdbb-1aeba887ca5d",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1156",
"ogSiteName": "GitHub",
"request-id": "9219:359D22:55BFA3A:77E5A66:67AB6A92",
"statusCode": 200,
"user-login": "",
"description": "Create comprehensive documentation to monitor Temporal Cloud and self-hosted Temporal clusters using SigNoz .",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "Create comprehensive documentation to monitor Temporal Cloud and self-hosted Temporal clusters using SigNoz .",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "89a4577dd23e0f3cbd42eabfeb76c249819b1cfffa2c4edadc4d3c2b3b0b52a8",
"ogDescription": "Create comprehensive documentation to monitor Temporal Cloud and self-hosted Temporal clusters using SigNoz .",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/2e6a18b79454329200a9bf1b29bd5e65b79fabb26aad75dd8f52d01a0a4f345e/SigNoz/signoz-web/issues/1156",
"twitter:title": "[DOCS] Temporal.io metrics to SigNoz · Issue #1156 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "Create comprehensive documentation to monitor Temporal Cloud and self-hosted Temporal clusters using SigNoz .",
"og:image:width": "1200",
"html-safe-nonce": "1a4df6b53d7dc6e31405f7842b10921c5762b6e0fc8661f811d2797e59567e54",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5MjE5OjM1OUQyMjo1NUJGQTNBOjc3RTVBNjY6NjdBQjZBOTIiLCJ2aXNpdG9yX2lkIjoiMTExODQxNDk3MDI5MDkyNDE3OCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1156/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "Calm-Rock",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "Create comprehensive documentation to monitor Temporal Cloud and self-hosted Temporal clusters using SigNoz .",
"hovercard-subject-tag": "issue:2834544424",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1112#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1112) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1112) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1112) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# \\[DOCS\\] Instructions for Windows\\#1112\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1112)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1112)\n\nCopy link\n\nOpen\n\nOpen\n\n[\\[DOCS\\] Instructions for Windows](https://github.com/signoz/signoz-web/issues/1112#top)#1112\n\nCopy link\n\nLabels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22)\n\n[](https://github.com/Calm-Rock)\n\n## Description\n\n[](https://github.com/Calm-Rock)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nopened [on Jan 23, 2025](https://github.com/SigNoz/signoz-web/issues/1112#issue-2808416179)\n\n**Current State**\n\n- Don't have instructions for Windows for setting OTel Binary in Self-Hosted Tab of [this Doc](https://signoz.io/docs/tutorial/opentelemetry-binary-usage-in-virtual-machine/)\n\n**Output State**\n\n- Create a new tab for windows in Self-Host and have instructions for installing OTel Collector binary for Windows user\n\n## Activity\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nadded\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22)\n\n[on Jan 23, 2025](https://github.com/SigNoz/signoz-web/issues/1112#event-16052896674)\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1112)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1112)\n\n## Metadata\n\n### Assignees\n\nNo one assigned\n\n### Labels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22)\n\n### Type\n\nNo type\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/Calm-Rock)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\n\\[DOCS\\] Instructions for Windows · Issue #1112 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1112",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1112",
"title": "[DOCS] Instructions for Windows · Issue #1112 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1112",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/3252043a9198213974d7548843169b8c2eec9411afb483f5233143259987cacc/SigNoz/signoz-web/issues/1112",
"ogTitle": "[DOCS] Instructions for Windows · Issue #1112 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/3252043a9198213974d7548843169b8c2eec9411afb483f5233143259987cacc/SigNoz/signoz-web/issues/1112",
"og:title": "[DOCS] Instructions for Windows · Issue #1112 · SigNoz/signoz-web",
"scrapeId": "a9097adc-5dcf-42b6-a866-524fba3329ef",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1112",
"ogSiteName": "GitHub",
"request-id": "A05D:259478:542390D:7586212:67AB6A99",
"statusCode": 200,
"user-login": "",
"description": "Current State Don't have instructions for Windows for setting OTel Binary in Self-Hosted Tab of this Doc Output State Create a new tab for windows in Self-Host and have instructions for installing OTel Collector binary for Windows user",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "Current State Don't have instructions for Windows for setting OTel Binary in Self-Hosted Tab of this Doc Output State Create a new tab for windows in Self-Host and have instructions for installing ...",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "ec7834513cb6abbbfbc2d2ea9599d28a83d2d99227e1c87803c7d79f593d85e4",
"ogDescription": "Current State Don't have instructions for Windows for setting OTel Binary in Self-Hosted Tab of this Doc Output State Create a new tab for windows in Self-Host and have instructions for installing ...",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/3252043a9198213974d7548843169b8c2eec9411afb483f5233143259987cacc/SigNoz/signoz-web/issues/1112",
"twitter:title": "[DOCS] Instructions for Windows · Issue #1112 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "Current State Don't have instructions for Windows for setting OTel Binary in Self-Hosted Tab of this Doc Output State Create a new tab for windows in Self-Host and have instructions for installing ...",
"og:image:width": "1200",
"html-safe-nonce": "6d6657d4f4906c66f0427433342da16299c3e15c6d9574fe6b5783ebdf9f7c1d",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBMDVEOjI1OTQ3ODo1NDIzOTBEOjc1ODYyMTI6NjdBQjZBOTkiLCJ2aXNpdG9yX2lkIjoiMjMxNzUxNzMyMDQ3NDAyODY5NyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1112/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "Calm-Rock",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "Current State Don't have instructions for Windows for setting OTel Binary in Self-Hosted Tab of this Doc Output State Create a new tab for windows in Self-Host and have instructions for install...",
"hovercard-subject-tag": "issue:2808416179",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1124#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1124) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1124) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1124) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# \\[DOCS\\]\\[GUIDE\\] Multiline logs to single line logs\\#1124\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1124)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1124)\n\nCopy link\n\nOpen\n\nOpen\n\n[\\[DOCS\\]\\[GUIDE\\] Multiline logs to single line logs](https://github.com/signoz/signoz-web/issues/1124#top)#1124\n\nCopy link\n\nLabels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[](https://github.com/Calm-Rock)\n\n## Description\n\n[](https://github.com/Calm-Rock)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nopened [on Jan 26, 2025](https://github.com/SigNoz/signoz-web/issues/1124#issue-2812051483)\n\nConvert the multiline logs to single-line logs and drop traces.\n\nRelevant links:\n\nTo drop spans: [https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/processor/filterprocessor/README.md](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/processor/filterprocessor/README.md)\n\nTo combine multiline logs into single line:\n\n[https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/pkg/stanza/docs/operators/recombine.md](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/pkg/stanza/docs/operators/recombine.md)\n\nRef Link: [here](https://app.intercom.com/a/inbox/wmkurvb7/inbox/search/conversation/334?filters=eyJwcmVkaWNhdGVzIjpbeyJpZGVudGlmaWVyIjoidGFncyIsInR5cGUiOiJhbmQiLCJwcmVkaWNhdGVzIjpbeyJhdHRyaWJ1dGUiOiJjb252ZXJzYXRpb24udGFnX2lkcyIsImNvbXBhcmlzb24iOiJpbiIsInR5cGUiOiJtYW51YWxfdGFnIiwidmFsdWUiOiI4NjE3NjA2In1dfV19&source=Slack-3745367dc9b54f0090de32e99e20bee8)\n\n## Activity\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nadded\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22)\n\n[on Jan 26, 2025](https://github.com/SigNoz/signoz-web/issues/1124#event-16072383921)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nchanged the title \\[DOCS\\]\\[GUIDE}\\] Multiline logs to single line logs\\[DOCS\\]\\[GUIDE\\] Multiline logs to single line logs [on Jan 26, 2025](https://github.com/SigNoz/signoz-web/issues/1124#event-16072677263)\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1124)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1124)\n\n## Metadata\n\n### Assignees\n\nNo one assigned\n\n### Labels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n### Type\n\nNo type\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/Calm-Rock)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\n\\[DOCS\\]\\[GUIDE\\] Multiline logs to single line logs · Issue #1124 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1124",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1124",
"title": "[DOCS][GUIDE] Multiline logs to single line logs · Issue #1124 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1124",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/02f2dd3d8f8ad66a46ad0fc948de5808cf51ed246a5024d482997dfc203a48f3/SigNoz/signoz-web/issues/1124",
"ogTitle": "[DOCS][GUIDE] Multiline logs to single line logs · Issue #1124 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/02f2dd3d8f8ad66a46ad0fc948de5808cf51ed246a5024d482997dfc203a48f3/SigNoz/signoz-web/issues/1124",
"og:title": "[DOCS][GUIDE] Multiline logs to single line logs · Issue #1124 · SigNoz/signoz-web",
"scrapeId": "076188e0-84a2-43dd-be32-7a17bc002daa",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1124",
"ogSiteName": "GitHub",
"request-id": "A4A1:3F801F:532F8AE:74247EC:67AB6A92",
"statusCode": 200,
"user-login": "",
"description": "Convert the multiline logs to single-line logs and drop traces. Relevant links: To drop spans: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/processor/filterprocessor/README.md To combine multiline logs into...",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "Convert the multiline logs to single-line logs and drop traces. Relevant links: To drop spans: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/processor/filterprocessor/...",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "41173a38bd1c942fd4e4f25d232c0b23f471891a4dac2c50fa382432dca5a6a0",
"ogDescription": "Convert the multiline logs to single-line logs and drop traces. Relevant links: To drop spans: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/processor/filterprocessor/...",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/02f2dd3d8f8ad66a46ad0fc948de5808cf51ed246a5024d482997dfc203a48f3/SigNoz/signoz-web/issues/1124",
"twitter:title": "[DOCS][GUIDE] Multiline logs to single line logs · Issue #1124 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "Convert the multiline logs to single-line logs and drop traces. Relevant links: To drop spans: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/processor/filterprocessor/...",
"og:image:width": "1200",
"html-safe-nonce": "25fac9cd6b1437f1cd05585c04d4735262c095e4484960fcb106be9eccbe5b71",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNEExOjNGODAxRjo1MzJGOEFFOjc0MjQ3RUM6NjdBQjZBOTIiLCJ2aXNpdG9yX2lkIjoiMTA0NjE0OTc1NzUzMzkwNzYwMiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1124/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "Calm-Rock",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "Convert the multiline logs to single-line logs and drop traces. Relevant links: To drop spans: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/processor/filterprocessor/...",
"hovercard-subject-tag": "issue:2812051483",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1107#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1107) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1107) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1107) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# \\[DOCS\\] Docs on pipelines\\#1107\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1107)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1107)\n\nCopy link\n\nOpen\n\nOpen\n\n[\\[DOCS\\] Docs on pipelines](https://github.com/signoz/signoz-web/issues/1107#top)#1107\n\nCopy link\n\nAssignees\n\n[](https://github.com/Calm-Rock)\n\nLabels\n\n[ICP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ICP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[](https://github.com/nityanandagohain)\n\n## Description\n\n[](https://github.com/nityanandagohain)\n\n[nityanandagohain](https://github.com/nityanandagohain)\n\nopened [on Jan 22, 2025](https://github.com/SigNoz/signoz-web/issues/1107#issue-2805947801) · edited by [Calm-Rock](https://github.com/Calm-Rock)\n\nEdits\n\nCreate docs on Logs Pipeline showing:\n\n- quick filters - Have resource name from container name\n- Parsing - Parse nested json\n\nRef Slack Thread - [here](https://signoz-team.slack.com/archives/C02TJTB9LKF/p1737609254141339)\n\nAnother issue with more context - [here](https://github.com/SigNoz/signoz/issues/6852)\n\n**Additional Requirement**\n\n- Add link of the created doc to [https://signoz.io/docs/logs-management/features/logs-quick-filters/](https://signoz.io/docs/logs-management/features/logs-quick-filters/)\n\n## Activity\n\n[nityanandagohain](https://github.com/nityanandagohain)\n\nassigned\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\n[on Jan 22, 2025](https://github.com/SigNoz/signoz-web/issues/1107#event-16038424326)\n\n[makeavish](https://github.com/makeavish)\n\nadded\n\n[ICP](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ICP%22)\n\n[on Jan 23, 2025](https://github.com/SigNoz/signoz-web/issues/1107#event-16042208430)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nchanged the title Docs on pipelines\\[DOCS\\] Docs on pipelines [on Jan 23, 2025](https://github.com/SigNoz/signoz-web/issues/1107#event-16052946128)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nadded\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[on Jan 23, 2025](https://github.com/SigNoz/signoz-web/issues/1107#event-16052971817)\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1107)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1107)\n\n## Metadata\n\n### Assignees\n\n- [\\\\\n\\\\\nCalm-Rock](https://github.com/Calm-Rock)\n\n### Labels\n\n[ICP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ICP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n### Type\n\nNo type\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/makeavish)[](https://github.com/nityanandagohain)[](https://github.com/Calm-Rock)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\n\\[DOCS\\] Docs on pipelines · Issue #1107 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1107",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1107",
"title": "[DOCS] Docs on pipelines · Issue #1107 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1107",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/150a1fd5db5c2d827b4c2b6b36ecf5201e5b73f870c0a1811c6d1082fdc39073/SigNoz/signoz-web/issues/1107",
"ogTitle": "[DOCS] Docs on pipelines · Issue #1107 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/150a1fd5db5c2d827b4c2b6b36ecf5201e5b73f870c0a1811c6d1082fdc39073/SigNoz/signoz-web/issues/1107",
"og:title": "[DOCS] Docs on pipelines · Issue #1107 · SigNoz/signoz-web",
"scrapeId": "8453fcfb-e27a-4aa5-b094-21ed20e3f809",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1107",
"ogSiteName": "GitHub",
"request-id": "8B5D:2326C4:2C00C2B:3E675CD:67AB6A96",
"statusCode": 200,
"user-login": "",
"description": "Create docs on Logs Pipeline showing: quick filters - Have resource name from container name Parsing - Parse nested json Ref Slack Thread - here Another issue with more context - here Additional Requirement Add link of the created doc to...",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "Create docs on Logs Pipeline showing: quick filters - Have resource name from container name Parsing - Parse nested json Ref Slack Thread - here Another issue with more context - here Additional Re...",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "ed9972acb29cd9c1f795e1ab2fa85350fe3a924d31e0eb8e6528e3af1cb9d830",
"ogDescription": "Create docs on Logs Pipeline showing: quick filters - Have resource name from container name Parsing - Parse nested json Ref Slack Thread - here Another issue with more context - here Additional Re...",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/150a1fd5db5c2d827b4c2b6b36ecf5201e5b73f870c0a1811c6d1082fdc39073/SigNoz/signoz-web/issues/1107",
"twitter:title": "[DOCS] Docs on pipelines · Issue #1107 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "Create docs on Logs Pipeline showing: quick filters - Have resource name from container name Parsing - Parse nested json Ref Slack Thread - here Another issue with more context - here Additional Re...",
"og:image:width": "1200",
"html-safe-nonce": "e76f5794c8317bc92af6b378f1ba28c491d487c193bad8584dd1920c9058500f",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4QjVEOjIzMjZDNDoyQzAwQzJCOjNFNjc1Q0Q6NjdBQjZBOTYiLCJ2aXNpdG9yX2lkIjoiNjM5OTAzMDAxMTc4NzcwMDg4NiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1107/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "nityanandagohain",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "Create docs on Logs Pipeline showing: quick filters - Have resource name from container name Parsing - Parse nested json Ref Slack Thread - here Another issue with more context - here Additional Re...",
"hovercard-subject-tag": "issue:2805947801",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1062#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1062) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1062) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1062) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# \\[DOCS\\] Necessary permission for Clickhouse user.\\#1062\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1062)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1062)\n\nCopy link\n\nOpen\n\nOpen\n\n[\\[DOCS\\] Necessary permission for Clickhouse user.](https://github.com/signoz/signoz-web/issues/1062#top)#1062\n\nCopy link\n\n[](https://github.com/TheShubhendra)\n\n## Description\n\n[](https://github.com/TheShubhendra)\n\n[TheShubhendra](https://github.com/TheShubhendra)\n\nopened [on Dec 24, 2024](https://github.com/SigNoz/signoz-web/issues/1062#issue-2757906558)\n\nIt would be helpful if [https://signoz.io/docs/operate/clickhouse/external-clickhouse/](https://signoz.io/docs/operate/clickhouse/external-clickhouse/) includes a list of the necessary permissions required for the ClickHouse user.\n\n## Activity\n\n[](https://github.com/TheShubhendra)\n\n### TheShubhendra commented on Dec 25, 2024\n\n[](https://github.com/TheShubhendra)\n\n[TheShubhendra](https://github.com/TheShubhendra)\n\n[on Dec 25, 2024](https://github.com/SigNoz/signoz-web/issues/1062#issuecomment-2562314753) · edited by [TheShubhendra](https://github.com/TheShubhendra)\n\nEdits\n\nContributorAuthor\n\n```notranslate\nGRANT ALL ON signoz_traces.* to signoz;\nGRANT ALL ON signoz_metrics.* to signoz;\nGRANT ALL ON signoz_logs.* to signoz;\nGRANT CLUSTER on *.* to signoz;\nGRANT ALL on signoz_metadata.* to signoz;\nGRANT SELECT on system.clusters to signoz;\nGRANT SELECT ON system.distributed_ddl_queue to signoz;\nGRANT REMOTE on *.* to signoz;\n\n```\n\nI figured these are the required permissions\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1062)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1062)\n\n## Metadata\n\n### Assignees\n\nNo one assigned\n\n### Labels\n\nNo labels\n\nNo labels\n\n### Type\n\nNo type\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/TheShubhendra)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\n\\[DOCS\\] Necessary permission for Clickhouse user. · Issue #1062 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1062",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1062",
"title": "[DOCS] Necessary permission for Clickhouse user. · Issue #1062 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1062",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/47d40ce0d05c6d6f8147b6c9b5c9147a80d385e53b73e1f379ae61278cc565cc/SigNoz/signoz-web/issues/1062",
"ogTitle": "[DOCS] Necessary permission for Clickhouse user. · Issue #1062 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/47d40ce0d05c6d6f8147b6c9b5c9147a80d385e53b73e1f379ae61278cc565cc/SigNoz/signoz-web/issues/1062",
"og:title": "[DOCS] Necessary permission for Clickhouse user. · Issue #1062 · SigNoz/signoz-web",
"scrapeId": "07f547d8-32cf-4a9e-9ac7-e912e1ddd071",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1062",
"ogSiteName": "GitHub",
"request-id": "9F99:16884F:1FE0926:2D8FE66:67AB6A96",
"statusCode": 200,
"user-login": "",
"description": "It would be helpful if https://signoz.io/docs/operate/clickhouse/external-clickhouse/ includes a list of the necessary permissions required for the ClickHouse user.",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "It would be helpful if https://signoz.io/docs/operate/clickhouse/external-clickhouse/ includes a list of the necessary permissions required for the ClickHouse user.",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "3dc1992f828c7bbe1551f87bda1401b0787281331479033b8c19ba4e9fcf02a5",
"ogDescription": "It would be helpful if https://signoz.io/docs/operate/clickhouse/external-clickhouse/ includes a list of the necessary permissions required for the ClickHouse user.",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/47d40ce0d05c6d6f8147b6c9b5c9147a80d385e53b73e1f379ae61278cc565cc/SigNoz/signoz-web/issues/1062",
"twitter:title": "[DOCS] Necessary permission for Clickhouse user. · Issue #1062 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "It would be helpful if https://signoz.io/docs/operate/clickhouse/external-clickhouse/ includes a list of the necessary permissions required for the ClickHouse user.",
"og:image:width": "1200",
"html-safe-nonce": "6b240b2ac8823d45cdceaa76f0bd005f3b1274f3b1d2468f80d557e2e4aea168",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5Rjk5OjE2ODg0RjoxRkUwOTI2OjJEOEZFNjY6NjdBQjZBOTYiLCJ2aXNpdG9yX2lkIjoiNTE4MjY5MTkxOTE5MTA0MjcxMCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1062/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "TheShubhendra",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "It would be helpful if https://signoz.io/docs/operate/clickhouse/external-clickhouse/ includes a list of the necessary permissions required for the ClickHouse user.",
"hovercard-subject-tag": "issue:2757906558",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1035#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1035) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1035) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1035) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# \\[DOCS\\] Improve Operate SigNoz Page\\#1035\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1035)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1035)\n\nCopy link\n\nOpen\n\nOpen\n\n[\\[DOCS\\] Improve Operate SigNoz Page](https://github.com/signoz/signoz-web/issues/1035#top)#1035\n\nCopy link\n\nAssignees\n\n[](https://github.com/Calm-Rock)\n\nLabels\n\n[documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[](https://github.com/Calm-Rock)\n\n## Description\n\n[](https://github.com/Calm-Rock)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nopened [on Dec 8, 2024](https://github.com/SigNoz/signoz-web/issues/1035#issue-2725435127)\n\nImprove this page - [https://signoz.io/docs/operate/docker-standalone/](https://signoz.io/docs/operate/docker-standalone/)\n\n## Activity\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nself-assigned this\n\n[on Dec 8, 2024](https://github.com/SigNoz/signoz-web/issues/1035#event-15573839855)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nadded\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[on Dec 8, 2024](https://github.com/SigNoz/signoz-web/issues/1035#event-15573840027)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nchanged the title \\[DOCS} Improve Operate SigNoz Page\\[DOCS\\] Improve Operate SigNoz Page [on Dec 10, 2024](https://github.com/SigNoz/signoz-web/issues/1035#event-15600602669)\\\n\\\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1035)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1035)\\\n\\\n## Metadata\\\n\\\n### Assignees\\\n\\\n- [\\\\\n\\\\\nCalm-Rock](https://github.com/Calm-Rock)\\\n\\\n### Labels\\\n\\\n[documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\\\n\\\n### Type\\\n\\\nNo type\\\n\\\n### Projects\\\n\\\nNo projects\\\n\\\n### Milestone\\\n\\\nNo milestone\\\n\\\n### Relationships\\\n\\\nNone yet\\\n\\\n### Development\\\n\\\nNo branches or pull requests\\\n\\\n### Participants\\\n\\\n[](https://github.com/Calm-Rock)\\\n\\\n## Issue actions\\\n\\\nYou can’t perform that action at this time.\\\n\\\n\\\n\\[DOCS\\] Improve Operate SigNoz Page · Issue #1035 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1035",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1035",
"title": "[DOCS] Improve Operate SigNoz Page · Issue #1035 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1035",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/0219ae26aa8549583204c5be879dc86082f79997d8a699ddd88a870438f6934e/SigNoz/signoz-web/issues/1035",
"ogTitle": "[DOCS] Improve Operate SigNoz Page · Issue #1035 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/0219ae26aa8549583204c5be879dc86082f79997d8a699ddd88a870438f6934e/SigNoz/signoz-web/issues/1035",
"og:title": "[DOCS] Improve Operate SigNoz Page · Issue #1035 · SigNoz/signoz-web",
"scrapeId": "b8860d4e-b203-45e2-8e9e-c40142303031",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1035",
"ogSiteName": "GitHub",
"request-id": "8E93:251A57:54B525C:764B728:67AB6A99",
"statusCode": 200,
"user-login": "",
"description": "Improve this page - https://signoz.io/docs/operate/docker-standalone/",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "Improve this page - https://signoz.io/docs/operate/docker-standalone/",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "2e769e54bc94821fc773953bb125d4f5f1eaa50a13e7999d2cf853e6c4f74650",
"ogDescription": "Improve this page - https://signoz.io/docs/operate/docker-standalone/",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/0219ae26aa8549583204c5be879dc86082f79997d8a699ddd88a870438f6934e/SigNoz/signoz-web/issues/1035",
"twitter:title": "[DOCS] Improve Operate SigNoz Page · Issue #1035 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "Improve this page - https://signoz.io/docs/operate/docker-standalone/",
"og:image:width": "1200",
"html-safe-nonce": "0ade88fb61156c40aa9a804d148dfcae940108fad3b7b5c18e2af62abc4b8d3b",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4RTkzOjI1MUE1Nzo1NEI1MjVDOjc2NEI3Mjg6NjdBQjZBOTkiLCJ2aXNpdG9yX2lkIjoiNjUwNDIzNTc1NTM5NDI2MzcwNSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1035/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "Calm-Rock",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "Improve this page - https://signoz.io/docs/operate/docker-standalone/",
"hovercard-subject-tag": "issue:2725435127",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1152#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1152) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1152) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1152) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# How to migrate from SigNoz self hosted to SigNoz Cloud\\#1152\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1152)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1152)\n\nCopy link\n\nOpen\n\n[Task](https://github.com/SigNoz/signoz-web/issues?q=type:%22Task%22)\n\nOpen\n\n[How to migrate from SigNoz self hosted to SigNoz Cloud](https://github.com/signoz/signoz-web/issues/1152#top)#1152\n\nTask\n\nCopy link\n\nAssignees\n\n[](https://github.com/Calm-Rock)[](https://github.com/grandwizard28)\n\n[](https://github.com/makeavish)\n\n## Description\n\n[](https://github.com/makeavish)\n\n[makeavish](https://github.com/makeavish)\n\nopened [on Feb 4, 2025](https://github.com/SigNoz/signoz-web/issues/1152#issue-2830752914)\n\nAdd details on updating otel collector endpoint to cloud tenant ingestion endpoint and also how users can migrate their metadata like dashboards, alerts, pipelines, users, views, etc\n\n## Activity\n\n[makeavish](https://github.com/makeavish)\n\nassigned\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\n,\n\n[prashant-shahi](https://github.com/prashant-shahi)\n\nand\n\n[grandwizard28](https://github.com/grandwizard28)\n\nand unassigned\n\n[prashant-shahi](https://github.com/prashant-shahi)\n\n[on Feb 4, 2025](https://github.com/SigNoz/signoz-web/issues/1152#event-16181891674)\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1152)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1152)\n\n## Metadata\n\n### Assignees\n\n- [\\\\\n\\\\\nCalm-Rock](https://github.com/Calm-Rock)\n- [\\\\\n\\\\\ngrandwizard28](https://github.com/grandwizard28)\n\n### Labels\n\nNo labels\n\nNo labels\n\n### Type\n\n[Task](https://github.com/SigNoz/signoz-web/issues?q=type:%22Task%22)\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/makeavish)[](https://github.com/prashant-shahi)[](https://github.com/Calm-Rock)[](https://github.com/grandwizard28)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\nHow to migrate from SigNoz self hosted to SigNoz Cloud · Issue #1152 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1152",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1152",
"title": "How to migrate from SigNoz self hosted to SigNoz Cloud · Issue #1152 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1152",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/5484d935460842c8ce97572e0845a5ea8285548fd4c90496c833ae1a4eac9444/SigNoz/signoz-web/issues/1152",
"ogTitle": "How to migrate from SigNoz self hosted to SigNoz Cloud · Issue #1152 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/5484d935460842c8ce97572e0845a5ea8285548fd4c90496c833ae1a4eac9444/SigNoz/signoz-web/issues/1152",
"og:title": "How to migrate from SigNoz self hosted to SigNoz Cloud · Issue #1152 · SigNoz/signoz-web",
"scrapeId": "cce6347c-5a61-4b10-8074-9b6463a9aa96",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1152",
"ogSiteName": "GitHub",
"request-id": "9175:20FB18:5562E03:7770AC9:67AB6A92",
"statusCode": 200,
"user-login": "",
"description": "Add details on updating otel collector endpoint to cloud tenant ingestion endpoint and also how users can migrate their metadata like dashboards, alerts, pipelines, users, views, etc",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "Add details on updating otel collector endpoint to cloud tenant ingestion endpoint and also how users can migrate their metadata like dashboards, alerts, pipelines, users, views, etc",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "d16bc7a4b455715d73ddc7e51b3112747388fb4b030f1d21f33be9a22f596a98",
"ogDescription": "Add details on updating otel collector endpoint to cloud tenant ingestion endpoint and also how users can migrate their metadata like dashboards, alerts, pipelines, users, views, etc",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/5484d935460842c8ce97572e0845a5ea8285548fd4c90496c833ae1a4eac9444/SigNoz/signoz-web/issues/1152",
"twitter:title": "How to migrate from SigNoz self hosted to SigNoz Cloud · Issue #1152 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "Add details on updating otel collector endpoint to cloud tenant ingestion endpoint and also how users can migrate their metadata like dashboards, alerts, pipelines, users, views, etc",
"og:image:width": "1200",
"html-safe-nonce": "363bb54641fed185dcd96f62758a7d3bc6e7bf870fd2abc127dc1f35f34f8c67",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5MTc1OjIwRkIxODo1NTYyRTAzOjc3NzBBQzk6NjdBQjZBOTIiLCJ2aXNpdG9yX2lkIjoiNTY2MTgyNTQ0ODM5MTk2MTIzNCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1152/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "makeavish",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "Add details on updating otel collector endpoint to cloud tenant ingestion endpoint and also how users can migrate their metadata like dashboards, alerts, pipelines, users, views, etc",
"hovercard-subject-tag": "issue:2830752914",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1120#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1120) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1120) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1120) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# \\[DOCS\\] Cloudflare worker instrumentation\\#1120\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1120)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1120)\n\nCopy link\n\nOpen\n\nOpen\n\n[\\[DOCS\\] Cloudflare worker instrumentation](https://github.com/signoz/signoz-web/issues/1120#top)#1120\n\nCopy link\n\nLabels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[](https://github.com/Calm-Rock)\n\n## Description\n\n[](https://github.com/Calm-Rock)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nopened [on Jan 26, 2025](https://github.com/SigNoz/signoz-web/issues/1120#issue-2812028762)\n\nHave instrumentation instructions for Cloudflare Workers\n\nRef: [here](https://www.hyperdx.io/docs/install/cloudflare)\n\n## Activity\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nadded\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22)\n\n[on Jan 26, 2025](https://github.com/SigNoz/signoz-web/issues/1120#event-16072267191)\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1120)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1120)\n\n## Metadata\n\n### Assignees\n\nNo one assigned\n\n### Labels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n### Type\n\nNo type\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/Calm-Rock)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\n\\[DOCS\\] Cloudflare worker instrumentation · Issue #1120 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1120",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1120",
"title": "[DOCS] Cloudflare worker instrumentation · Issue #1120 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1120",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/e19b754a23d636255da393bca1c4962f1e9488d900171daf6e585234a87cef25/SigNoz/signoz-web/issues/1120",
"ogTitle": "[DOCS] Cloudflare worker instrumentation · Issue #1120 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/e19b754a23d636255da393bca1c4962f1e9488d900171daf6e585234a87cef25/SigNoz/signoz-web/issues/1120",
"og:title": "[DOCS] Cloudflare worker instrumentation · Issue #1120 · SigNoz/signoz-web",
"scrapeId": "025b1661-6451-4f7a-ab7d-d360e0e8b985",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1120",
"ogSiteName": "GitHub",
"request-id": "A5F9:8CC87:5519CBC:76EDF10:67AB6A92",
"statusCode": 200,
"user-login": "",
"description": "Have instrumentation instructions for Cloudflare Workers Ref: here",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "Have instrumentation instructions for Cloudflare Workers Ref: here",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "57498f517e1512837af930f04d59834ec1a4601a686de517afd8b513fd86ccfc",
"ogDescription": "Have instrumentation instructions for Cloudflare Workers Ref: here",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/e19b754a23d636255da393bca1c4962f1e9488d900171daf6e585234a87cef25/SigNoz/signoz-web/issues/1120",
"twitter:title": "[DOCS] Cloudflare worker instrumentation · Issue #1120 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "Have instrumentation instructions for Cloudflare Workers Ref: here",
"og:image:width": "1200",
"html-safe-nonce": "be072bf8b437ccd6f410775b5ec58e02ea410d163c9b34da3d366018130574eb",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNUY5OjhDQzg3OjU1MTlDQkM6NzZFREYxMDo2N0FCNkE5MiIsInZpc2l0b3JfaWQiOiIyOTY5NDI3NzY3NTYxMjUxNDc0IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1120/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "Calm-Rock",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "Have instrumentation instructions for Cloudflare Workers Ref: here",
"hovercard-subject-tag": "issue:2812028762",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1090#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1090) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1090) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1090) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# \\[DOCS\\] Go Auto instrumentation\\#1090\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1090)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1090)\n\nCopy link\n\nOpen\n\nOpen\n\n[\\[DOCS\\] Go Auto instrumentation](https://github.com/signoz/signoz-web/issues/1090#top)#1090\n\nCopy link\n\nAssignees\n\n[](https://github.com/Calm-Rock)\n\nLabels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[](https://github.com/Calm-Rock)\n\n## Description\n\n[](https://github.com/Calm-Rock)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nopened [on Jan 16, 2025](https://github.com/SigNoz/signoz-web/issues/1090#issue-2794623769) · edited by [Calm-Rock](https://github.com/Calm-Rock)\n\nEdits\n\nThere is automatic instrumentation available for Golang in OTel which uses eBPF and is still WIP. Add it to docs and mention it is WIP.\n\nSome limitations are:\n\n- Uses eBPF so might not work with MacOS and Windows\n- Not tested properly\n\nGood resources to know more about this:\n\n- [OTel Repo](https://github.com/open-telemetry/opentelemetry-go-instrumentation/)\n- [Odigos docs](https://docs.odigos.io/instrumentations/golang/golang)\n\n## Activity\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nchanged the title \\[BLOG\\] Go Auto instrumentation\\[DOCS\\] Go Auto instrumentation [on Jan 16, 2025](https://github.com/SigNoz/signoz-web/issues/1090#event-15972105278)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nself-assigned this\n\n[on Jan 16, 2025](https://github.com/SigNoz/signoz-web/issues/1090#event-15972134687)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nadded\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22)\n\n[on Jan 16, 2025](https://github.com/SigNoz/signoz-web/issues/1090#event-15972135661)\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1090)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1090)\n\n## Metadata\n\n### Assignees\n\n- [\\\\\n\\\\\nCalm-Rock](https://github.com/Calm-Rock)\n\n### Labels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n### Type\n\nNo type\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/Calm-Rock)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\n\\[DOCS\\] Go Auto instrumentation · Issue #1090 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1090",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1090",
"title": "[DOCS] Go Auto instrumentation · Issue #1090 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1090",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/3a37e0af6cca08d256e15b193458e00bdbbe8f32c16dc3145fe58a6dcfc48524/SigNoz/signoz-web/issues/1090",
"ogTitle": "[DOCS] Go Auto instrumentation · Issue #1090 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/3a37e0af6cca08d256e15b193458e00bdbbe8f32c16dc3145fe58a6dcfc48524/SigNoz/signoz-web/issues/1090",
"og:title": "[DOCS] Go Auto instrumentation · Issue #1090 · SigNoz/signoz-web",
"scrapeId": "7b01f34b-a874-4fdd-9458-5a8bba7b1e93",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1090",
"ogSiteName": "GitHub",
"request-id": "8AD9:2F863E:54245FB:75EC2BC:67AB6A96",
"statusCode": 200,
"user-login": "",
"description": "There is automatic instrumentation available for Golang in OTel which uses eBPF and is still WIP. Add it to docs and mention it is WIP. Some limitations are: Uses eBPF so might not work with MacOS and Windows Not tested properly Good res...",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "There is automatic instrumentation available for Golang in OTel which uses eBPF and is still WIP. Add it to docs and mention it is WIP. Some limitations are: Uses eBPF so might not work with MacOS ...",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "4a41d542955816de6166af450308d0d5ee78dbd525af9269374352a4b4fc43b1",
"ogDescription": "There is automatic instrumentation available for Golang in OTel which uses eBPF and is still WIP. Add it to docs and mention it is WIP. Some limitations are: Uses eBPF so might not work with MacOS ...",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/3a37e0af6cca08d256e15b193458e00bdbbe8f32c16dc3145fe58a6dcfc48524/SigNoz/signoz-web/issues/1090",
"twitter:title": "[DOCS] Go Auto instrumentation · Issue #1090 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "There is automatic instrumentation available for Golang in OTel which uses eBPF and is still WIP. Add it to docs and mention it is WIP. Some limitations are: Uses eBPF so might not work with MacOS ...",
"og:image:width": "1200",
"html-safe-nonce": "65ca1539c6da3ac0dd7a393c0635f64ec87fd37847bdafeaa60589b3cb34c13c",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4QUQ5OjJGODYzRTo1NDI0NUZCOjc1RUMyQkM6NjdBQjZBOTYiLCJ2aXNpdG9yX2lkIjoiMTY5NzYwNzQyOTE2ODc4NjA3MCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1090/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "Calm-Rock",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "There is automatic instrumentation available for Golang in OTel which uses eBPF and is still WIP. Add it to docs and mention it is WIP. Some limitations are: Uses eBPF so might not work with MacOS ...",
"hovercard-subject-tag": "issue:2794623769",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1123#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1123) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1123) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1123) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# How SigNoz pricing works\\#1123\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1123)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1123)\n\nCopy link\n\nOpen\n\nOpen\n\n[How SigNoz pricing works](https://github.com/signoz/signoz-web/issues/1123#top)#1123\n\nCopy link\n\nLabels\n\n[documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[](https://github.com/Calm-Rock)\n\n## Description\n\n[](https://github.com/Calm-Rock)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nopened [on Jan 26, 2025](https://github.com/SigNoz/signoz-web/issues/1123#issue-2812033766)\n\nThere should be a section in docs that explains in detail how billing works in SigNoz cloud and enterprise.\n\nReference conversation: [here](https://app.intercom.com/a/inbox/wmkurvb7/inbox/search/conversation/545?filters=eyJwcmVkaWNhdGVzIjpbeyJpZGVudGlmaWVyIjoidGFncyIsInR5cGUiOiJhbmQiLCJwcmVkaWNhdGVzIjpbeyJhdHRyaWJ1dGUiOiJjb252ZXJzYXRpb24udGFnX2lkcyIsImNvbXBhcmlzb24iOiJpbiIsInR5cGUiOiJtYW51YWxfdGFnIiwidmFsdWUiOiI4NjE3NjA2In1dfV19&source=Slack-3745367dc9b54f0090de32e99e20bee8)\n\n## Activity\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nadded\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[on Jan 26, 2025](https://github.com/SigNoz/signoz-web/issues/1123#event-16072291802)\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1123)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1123)\n\n## Metadata\n\n### Assignees\n\nNo one assigned\n\n### Labels\n\n[documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n### Type\n\nNo type\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/Calm-Rock)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\nHow SigNoz pricing works · Issue #1123 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1123",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1123",
"title": "How SigNoz pricing works · Issue #1123 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1123",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/1664d67859a3c94af81fc80f703a93b9f75dc6adb2d18b5358465db805267bbf/SigNoz/signoz-web/issues/1123",
"ogTitle": "How SigNoz pricing works · Issue #1123 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/1664d67859a3c94af81fc80f703a93b9f75dc6adb2d18b5358465db805267bbf/SigNoz/signoz-web/issues/1123",
"og:title": "How SigNoz pricing works · Issue #1123 · SigNoz/signoz-web",
"scrapeId": "d5c5ca7d-cc29-4dc3-9f59-dfa09a5e7a4f",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1123",
"ogSiteName": "GitHub",
"request-id": "9341:16884F:1FDF77E:2D8E436:67AB6A92",
"statusCode": 200,
"user-login": "",
"description": "There should be a section in docs that explains in detail how billing works in SigNoz cloud and enterprise. Reference conversation: here",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "There should be a section in docs that explains in detail how billing works in SigNoz cloud and enterprise. Reference conversation: here",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "22bab284e2e8ff6f3c2bc70f3e12ebe02b67a72face452bd1b49b7bd1d5b6f03",
"ogDescription": "There should be a section in docs that explains in detail how billing works in SigNoz cloud and enterprise. Reference conversation: here",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/1664d67859a3c94af81fc80f703a93b9f75dc6adb2d18b5358465db805267bbf/SigNoz/signoz-web/issues/1123",
"twitter:title": "How SigNoz pricing works · Issue #1123 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "There should be a section in docs that explains in detail how billing works in SigNoz cloud and enterprise. Reference conversation: here",
"og:image:width": "1200",
"html-safe-nonce": "f1f5033144fb0791240707b3b1e446bbf2869108354ba6cfc2f54e7f51f025ef",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5MzQxOjE2ODg0RjoxRkRGNzdFOjJEOEU0MzY6NjdBQjZBOTIiLCJ2aXNpdG9yX2lkIjoiMTQzMzA2NDYzNTE3MzEzNzA0MiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1123/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "Calm-Rock",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "There should be a section in docs that explains in detail how billing works in SigNoz cloud and enterprise. Reference conversation: here",
"hovercard-subject-tag": "issue:2812033766",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1127#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1127) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1127) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1127) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# Create python manual instrumentation docs from blog\\#1127\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1127)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1127)\n\nCopy link\n\nOpen\n\nOpen\n\n[Create python manual instrumentation docs from blog](https://github.com/signoz/signoz-web/issues/1127#top)#1127\n\nCopy link\n\nAssignees\n\n[](https://github.com/Calm-Rock)\n\nLabels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[](https://github.com/makeavish)\n\n## Description\n\n[](https://github.com/makeavish)\n\n[makeavish](https://github.com/makeavish)\n\nopened [on Jan 27, 2025](https://github.com/SigNoz/signoz-web/issues/1127#issue-2812892245)\n\n<@U05SR4GB7QA>Add Python manual instrumentation docs. Blog already exists here - [https://signoz.io/opentelemetry/manual-spans-in-python-application/#decorating-a-function](https://signoz.io/opentelemetry/manual-spans-in-python-application/#decorating-a-function)\n\n[Slack Message](https://signoz-team.slack.com/archives/C02TJTB9LKF/p1737980835151899)\n\n## Activity\n\n[makeavish](https://github.com/makeavish)\n\nadded\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[on Jan 27, 2025](https://github.com/SigNoz/signoz-web/issues/1127#event-16077177669)\n\n[makeavish](https://github.com/makeavish)\n\nassigned\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\n[on Jan 27, 2025](https://github.com/SigNoz/signoz-web/issues/1127#event-16077177742)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nadded\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22)\n\n[on Feb 2, 2025](https://github.com/SigNoz/signoz-web/issues/1127#event-16155920066)\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1127)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1127)\n\n## Metadata\n\n### Assignees\n\n- [\\\\\n\\\\\nCalm-Rock](https://github.com/Calm-Rock)\n\n### Labels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n### Type\n\nNo type\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/makeavish)[](https://github.com/Calm-Rock)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\nCreate python manual instrumentation docs from blog · Issue #1127 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1127",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1127",
"title": "Create python manual instrumentation docs from blog · Issue #1127 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1127",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/daafb5d508732166a4ce6974031dac82a13f2a7e445cb8ecc29d4d4cc39d9fee/SigNoz/signoz-web/issues/1127",
"ogTitle": "Create python manual instrumentation docs from blog · Issue #1127 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/daafb5d508732166a4ce6974031dac82a13f2a7e445cb8ecc29d4d4cc39d9fee/SigNoz/signoz-web/issues/1127",
"og:title": "Create python manual instrumentation docs from blog · Issue #1127 · SigNoz/signoz-web",
"scrapeId": "570fb458-ddc7-49df-95cf-d3b5ab02dd2c",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1127",
"ogSiteName": "GitHub",
"request-id": "8C3D:33683E:537D905:74E254B:67AB6A92",
"statusCode": 200,
"user-login": "",
"description": "<@U05SR4GB7QA>Add Python manual instrumentation docs. Blog already exists here - https://signoz.io/opentelemetry/manual-spans-in-python-application/#decorating-a-function Slack Message",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "<@U05SR4GB7QA>Add Python manual instrumentation docs. Blog already exists here - https://signoz.io/opentelemetry/manual-spans-in-python-application/#decorating-a-function Slack Message",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "1d29d51eac931e9e89181636e2b8dc57241d015f9dc3d1887964c4b3d3c1eec8",
"ogDescription": "<@U05SR4GB7QA>Add Python manual instrumentation docs. Blog already exists here - https://signoz.io/opentelemetry/manual-spans-in-python-application/#decorating-a-function Slack Message",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/daafb5d508732166a4ce6974031dac82a13f2a7e445cb8ecc29d4d4cc39d9fee/SigNoz/signoz-web/issues/1127",
"twitter:title": "Create python manual instrumentation docs from blog · Issue #1127 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "<@U05SR4GB7QA>Add Python manual instrumentation docs. Blog already exists here - https://signoz.io/opentelemetry/manual-spans-in-python-application/#decorating-a-function Slack Message",
"og:image:width": "1200",
"html-safe-nonce": "a15a702b5664d4ae5516c5fe24ed76d58ff315885376bc7c72244f10c066bf4b",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4QzNEOjMzNjgzRTo1MzdEOTA1Ojc0RTI1NEI6NjdBQjZBOTIiLCJ2aXNpdG9yX2lkIjoiMzg1NDA3ODEyMDE0MjAwNjkzMCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1127/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "makeavish",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "<@U05SR4GB7QA>Add Python manual instrumentation docs. Blog already exists here - https://signoz.io/opentelemetry/manual-spans-in-python-application/#decorating-a-function Slack Message",
"hovercard-subject-tag": "issue:2812892245",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",
"octolytics-dimension-user_login": "SigNoz",
"octolytics-dimension-repository_id": "799536260",
"octolytics-dimension-repository_nwo": "SigNoz/signoz-web",
"octolytics-dimension-repository_public": "true",
"octolytics-dimension-repository_is_fork": "false",
"octolytics-dimension-repository_network_root_id": "799536260",
"octolytics-dimension-repository_network_root_nwo": "SigNoz/signoz-web"
}
},
{
"markdown": "[Skip to content](https://github.com/signoz/signoz-web/issues/1118#start-of-content)\n\nYou signed in with another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1118) to refresh your session.You signed out in another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1118) to refresh your session.You switched accounts on another tab or window. [Reload](https://github.com/signoz/signoz-web/issues/1118) to refresh your session.Dismiss alert\n\n[SigNoz](https://github.com/SigNoz)/ **[signoz-web](https://github.com/SigNoz/signoz-web)** Public\n\n- [Notifications](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web) You must be signed in to change notification settings\n- [Fork\\\\\n52](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n- [Star\\\\\n10](https://github.com/login?return_to=%2FSigNoz%2Fsignoz-web)\n\n\n# \\[DOCS\\] Auto instrument Wordpress\\#1118\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1118)\n\nCopy link\n\n[New issue](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1118)\n\nCopy link\n\nOpen\n\nOpen\n\n[\\[DOCS\\] Auto instrument Wordpress](https://github.com/signoz/signoz-web/issues/1118#top)#1118\n\nCopy link\n\nLabels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[](https://github.com/Calm-Rock)\n\n## Description\n\n[](https://github.com/Calm-Rock)\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nopened [on Jan 26, 2025](https://github.com/SigNoz/signoz-web/issues/1118#issue-2812024933) · edited by [Calm-Rock](https://github.com/Calm-Rock)\n\nEdits\n\nCreate docs for auto-instrumentingWordPresss applications.\n\nAdd description form the below issue.\n\n- [https://github.com/SigNoz/engineering-pod/issues/1546](https://github.com/SigNoz/engineering-pod/issues/1546)\n\n## Activity\n\n[Calm-Rock](https://github.com/Calm-Rock)\n\nadded\n\n[ECP](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22)\n\n[documentationImprovements or additions to documentation](https://github.com/signoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n[on Jan 26, 2025](https://github.com/SigNoz/signoz-web/issues/1118#event-16072247907)\n\n[Sign up for free](https://github.com/signup?return_to=https://github.com/signoz/signoz-web/issues/1118)**to join this conversation on GitHub.** Already have an account? [Sign in to comment](https://github.com/login?return_to=https://github.com/signoz/signoz-web/issues/1118)\n\n## Metadata\n\n### Assignees\n\nNo one assigned\n\n### Labels\n\n[ECP](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22ECP%22) [documentationImprovements or additions to documentation](https://github.com/SigNoz/signoz-web/issues?q=state%3Aopen%20label%3A%22documentation%22) Improvements or additions to documentation\n\n### Type\n\nNo type\n\n### Projects\n\nNo projects\n\n### Milestone\n\nNo milestone\n\n### Relationships\n\nNone yet\n\n### Development\n\nNo branches or pull requests\n\n### Participants\n\n[](https://github.com/Calm-Rock)\n\n## Issue actions\n\nYou can’t perform that action at this time.\n\n\n\\[DOCS\\] Auto instrument Wordpress · Issue #1118 · SigNoz/signoz-web",
"metadata": {
"url": "https://github.com/signoz/signoz-web/issues/1118",
"ogUrl": "https://github.com/SigNoz/signoz-web/issues/1118",
"title": "[DOCS] Auto instrument Wordpress · Issue #1118 · SigNoz/signoz-web",
"og:url": "https://github.com/SigNoz/signoz-web/issues/1118",
"favicon": {},
"og:type": "object",
"ogImage": "https://opengraph.githubassets.com/da83e9a6ed223be922e1ec7a48bcac2c65c747b89afe3fe92ce5ca75298d7e4a/SigNoz/signoz-web/issues/1118",
"ogTitle": "[DOCS] Auto instrument Wordpress · Issue #1118 · SigNoz/signoz-web",
"hostname": "github.com",
"language": "en",
"og:image": "https://opengraph.githubassets.com/da83e9a6ed223be922e1ec7a48bcac2c65c747b89afe3fe92ce5ca75298d7e4a/SigNoz/signoz-web/issues/1118",
"og:title": "[DOCS] Auto instrument Wordpress · Issue #1118 · SigNoz/signoz-web",
"scrapeId": "9291dbd8-a29e-4e8f-bdbc-12d4ea7d7c9c",
"viewport": "width=device-width",
"fb:app_id": "1401488693436528",
"go-import": "github.com/SigNoz/signoz-web git https://github.com/SigNoz/signoz-web.git",
"sourceURL": "https://github.com/signoz/signoz-web/issues/1118",
"ogSiteName": "GitHub",
"request-id": "82D7:12FE18:5421F8B:75CEF1A:67AB6A96",
"statusCode": 200,
"user-login": "",
"description": "Create docs for auto-instrumentingWordPresss applications. Add description form the below issue. SigNoz/engineering-pod#1546",
"theme-color": "#1e2327",
"color-scheme": "light dark",
"og:image:alt": "Create docs for auto-instrumentingWordPresss applications. Add description form the below issue. SigNoz/engineering-pod#1546",
"og:site_name": "GitHub",
"route-action": "issue_layout",
"twitter:card": "summary_large_image",
"twitter:site": "@github",
"visitor-hmac": "bd4a00f96aed27df2da70d06f7c86546281a95ffd6cc2fad17e9dca9ae36d2fb",
"ogDescription": "Create docs for auto-instrumentingWordPresss applications. Add description form the below issue. SigNoz/engineering-pod#1546",
"route-pattern": "/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)",
"twitter:image": "https://opengraph.githubassets.com/da83e9a6ed223be922e1ec7a48bcac2c65c747b89afe3fe92ce5ca75298d7e4a/SigNoz/signoz-web/issues/1118",
"twitter:title": "[DOCS] Auto instrument Wordpress · Issue #1118 · SigNoz/signoz-web",
"octolytics-url": "https://collector.github.com/github/collect",
"og:description": "Create docs for auto-instrumentingWordPresss applications. Add description form the below issue. SigNoz/engineering-pod#1546",
"og:image:width": "1200",
"html-safe-nonce": "2f56271bdef8be821a0d7727a55f7c4d8e593ff5b630e501eed4e0689337a2bf",
"og:image:height": "600",
"visitor-payload": "eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4MkQ3OjEyRkUxODo1NDIxRjhCOjc1Q0VGMUE6NjdBQjZBOTYiLCJ2aXNpdG9yX2lkIjoiMjA0Mzc5MDc0ODIzMzE5ODIzMCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9",
"apple-itunes-app": "app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/signoz/signoz-web/1118/issue_layout",
"route-controller": "voltron_issues_fragments",
"browser-stats-url": "https://api.github.com/_private/browser/stats",
"expected-hostname": "github.com",
"analytics-location": "/<user-name>/<repo-name>/voltron/issues_fragments/issue_layout",
"browser-errors-url": "https://api.github.com/_private/browser/errors",
"og:author:username": "Calm-Rock",
"turbo-body-classes": "logged-out env-production page-responsive",
"turbo-cache-control": "no-preview",
"twitter:description": "Create docs for auto-instrumentingWordPresss applications. Add description form the below issue. SigNoz/engineering-pod#1546",
"hovercard-subject-tag": "issue:2812024933",
"google-site-verification": "Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I",
"github-keyboard-shortcuts": "repository,issues,copilot",
"current-catalog-service-hash": "81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114",
"octolytics-dimension-user_id": "76905799",