-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Content not readable on microprofile.io home page #341
Comments
Also #334 is related to the overall situation of microprofile.io |
@rsoika did you read the forum thread: https://groups.google.com/forum/?pli=1#!topic/microprofile/7xEB4PO9Zqs yet? Work in progress! |
Thank you for the link. |
Hola @rsoika, I will close this ticket based on your follow up. I hope you are able to provide help on the current work being tackled with the website. See you in that thread. |
There are still server errors if I click through the projects: I wonder why this is not recognized by someone else. Just to point it out once again: The website https://microprofile.io/ is not working since more than 6 months Try to click through all projects in short time - There is still a very have server problem as you can see in the screenshot |
I deeply appreciate your follow up on the thread Ralph! The Project page is going to be re-done. See you in the forum:) |
One again I would like to point out that the microprofile pages are mostly broken. If you look at this page: https://microprofile.io/project/eclipse/microprofile-config/spec/src/main/asciidoc/configexamples.asciidoc As I mentioned in the past think its a template problem with inline code caused by the web site generator behind that site. Can someone reopen the issue? |
@Emily-Jiang yes, I will join the 'Marketing call' |
Hello @aeiras, I ask you all to go on microprofile.io and then click on big technology buttons like "metrics 4.0" or "health". How is such information supposed to help someone decide whether Microprofile is the right technology? @Emily-Jiang has written a whole book about microprofiles. Can't you put a short explanation about the technologies there instead of linking to the Github release pages? Please - I just want to help to improve the project. @aeiras please put yourself in the position of a project manager read the information about the Microprofile technologies and try to understand it - It is impossible! I am not a fan of spring, but if you do not understand what I am talking about, do the same on this page: https://spring.io/ I also suggest to remove the [project section[(https://microprofile.io/projects/) completely. It does not improve the project form a marketing perspective. |
Here is my suggestion for the Metrics section Metrics 4.0Metrics 4.0 gives you a great way to monitor your runntime and your application. Microprofile 4.0 is collecting custom metrics and provides them in the common prometheus format. This makes it easy to visualize and monitor any kind of application parameters. Also it allows you to setup a alerting with the help of Grafana in just a view minutes. To add your own metrics within your project you can use the Microprofile MetricRegistry: @ApplicationScoped
public class MetricService {
@Inject
@RegistryType(type = MetricRegistry.Type.APPLICATION)
MetricRegistry metricRegistry;
public void onExportEvent(exportEvent) {
// build a counter metric
Metadata metadata = Metadata.builder().withName("my-metric")
.withDescription("Invoice Export").withType(MetricType.COUNTER).build();
List<Tag> tags = new ArrayList<Tag>();
tags.add(new Tag("method", "export"));
tags.add(new Tag("mandant", exportEvent.mandantID));
Counter counter = metricRegistry.counter(metadata, tags.toArray(new Tag[tags.size()]));
counter.inc(exportEvent.count);
}
} |
Thank you, Emily for transferring the ticket to the WG repo. I hope you continue joining the Marketing hangouts in the future. I think you wish for MP Specs to have more description, based on your wonderful example. If that is the case, please submit PRs directly to each repo with your write-ups. I hope we continue to join us on the new ticket. This one is closing because any adjustments that deal with Specs require front-end and back-end work, not marketing. |
Sorry but I must again point out that the official microprofile.io homepage has very bad layout problems.
I came across the problem when I just wanted to read something about the Metric API myself. There is sill the problem that the .adoc files are not correctly displayed on the home page.
If you as a user didn't know the Github source you will not be able to learn something useful about the different projects. And I think this is really really bad. Because you all do so much good work creating a awesome microservice framework but users who want to learn something about all this starting with microprofile.io will be frustrated after a few minutes.
Just to to point it out once again please compare the following two links which should show the same content:
This is how the content should look like (and is shown on Github):
And this is what the user see on microprofile.io
I have tried to point to this problem several times. All Microprofile Projects are affected. It is not a Problem form the different projects. It is only a Problem form how microprofile.io is rendering the README and .adoc files form the project.
I fear that the problem can only be solved with a very great deal of effort. So I can understand that this can not be solved over night. Therefore, I suggest that we refer directly to the corresponding Github projects from the Microprofile.io project overview. This allows us to avoid unnecessarily frustrating or deterring new users.
One could easily stick to the conspiracy theory that someone here is trying to boycott the project.... ;-)
The text was updated successfully, but these errors were encountered: